--- BasiliskII/src/include/emul_op.h 1999/10/31 23:18:38 1.4 +++ BasiliskII/src/include/emul_op.h 2000/07/25 17:02:24 1.7 @@ -1,7 +1,7 @@ /* * emul_op.h - 68k opcodes for ROM patches * - * Basilisk II (C) 1997-1999 Christian Bauer + * Basilisk II (C) 1997-2000 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -26,6 +26,7 @@ const uint16 M68K_ILLEGAL = 0x4afc; const uint16 M68K_NOP = 0x4e71; const uint16 M68K_RTS = 0x4e75; const uint16 M68K_RTD = 0x4e74; +const uint16 M68K_RTR = 0x4e77; const uint16 M68K_JMP = 0x4ef9; const uint16 M68K_JMP_A0 = 0x4ed0; const uint16 M68K_JSR = 0x4eb9; @@ -81,6 +82,11 @@ enum { M68K_EMUL_OP_EXTFS_COMM, M68K_EMUL_OP_EXTFS_HFS, M68K_EMUL_OP_BLOCK_MOVE, + M68K_EMUL_OP_SOUNDIN_OPEN, // 0x7130 + M68K_EMUL_OP_SOUNDIN_PRIME, + M68K_EMUL_OP_SOUNDIN_CONTROL, + M68K_EMUL_OP_SOUNDIN_STATUS, + M68K_EMUL_OP_SOUNDIN_CLOSE, M68K_EMUL_OP_MAX // highest number };