mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
d01e05b7b5
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1462 8ced0084-cf51-0410-be5f-012b33b47a6e
29 lines
929 B
C
29 lines
929 B
C
/* $VER: ppc_disasm V0.1 (23.05.1998)
|
|
*
|
|
* Disassembler module for the PowerPC microprocessor family
|
|
* Copyright (c) 1998-2000 Frank Wille
|
|
*
|
|
* ppc_disasm.c is freeware and may be freely redistributed as long as
|
|
* no modifications are made and nothing is charged for it.
|
|
* Non-commercial usage is allowed without any restrictions.
|
|
* EVERY PRODUCT OR PROGRAM DERIVED DIRECTLY FROM MY SOURCE MAY NOT BE
|
|
* SOLD COMMERCIALLY WITHOUT PERMISSION FROM THE AUTHOR.
|
|
*
|
|
*
|
|
* v0.1 (23.05.1998) phx
|
|
* First version, which implements all PowerPC instructions.
|
|
* v0.0 (09.05.1998) phx
|
|
* File created.
|
|
*/
|
|
|
|
|
|
// Yeah, this does not really belong in bochs_disasm, but hey, it's a disasm and it needed a common location...
|
|
|
|
#ifndef _POWERPC_DISASM
|
|
#define _POWERPC_DISASM
|
|
|
|
void DisassembleGekko(unsigned int opcode, unsigned int curInstAddr, char *dest, int max_size);
|
|
const char *GetGRPName(unsigned int index);
|
|
|
|
#endif
|