1 |
|
/* |
2 |
|
* emul_op.h - 68k opcodes for ROM patches |
3 |
|
* |
4 |
< |
* SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig |
4 |
> |
* SheepShaver (C) 1997-2004 Christian Bauer and Marc Hellwig |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
53 |
|
}; |
54 |
|
const uint16 M68K_EMUL_RETURN = 0xfe40; // Extended opcodes |
55 |
|
const uint16 M68K_EXEC_RETURN = 0xfe41; |
56 |
< |
const uint16 M68K_EMUL_BREAK = 0xfe42; |
56 |
> |
const uint16 M68K_EXEC_NATIVE = 0xfe42; |
57 |
> |
const uint16 M68K_EMUL_BREAK = 0xfe43; |
58 |
|
const uint16 M68K_EMUL_OP_XPRAM1 = M68K_EMUL_BREAK + OP_XPRAM1; |
59 |
|
const uint16 M68K_EMUL_OP_XPRAM2 = M68K_EMUL_BREAK + OP_XPRAM2; |
60 |
|
const uint16 M68K_EMUL_OP_XPRAM3 = M68K_EMUL_BREAK + OP_XPRAM3; |
104 |
|
const uint16 M68K_EMUL_OP_EXTFS_HFS = M68K_EMUL_BREAK + OP_EXTFS_HFS; |
105 |
|
const uint16 M68K_EMUL_OP_IDLE_TIME = M68K_EMUL_BREAK + OP_IDLE_TIME; |
106 |
|
|
107 |
< |
extern void EmulOp(M68kRegisters *r, uint32 pc, int selector); |
107 |
> |
extern "C" void EmulOp(M68kRegisters *r, uint32 pc, int selector); |
108 |
|
|
109 |
|
#endif |