diff options
author | 2012-09-10 17:44:55 +0000 | |
---|---|---|
committer | 2012-09-10 17:44:55 +0000 | |
commit | 573744ba277f1e91df3b86b4091da616a3311428 (patch) | |
tree | 15cfb32988766e9b010696a6fae43cc7f7c7458b /src/emu/cpu/mc68hc11/hc11ops.h | |
parent | be3af47f06821ce44fa7ebd16c026ede804d82bf (diff) |
Added asl_ext, bclr_dir, bset_dir opcodes to the HC11 core. (nw)
Diffstat (limited to 'src/emu/cpu/mc68hc11/hc11ops.h')
-rw-r--r-- | src/emu/cpu/mc68hc11/hc11ops.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/cpu/mc68hc11/hc11ops.h b/src/emu/cpu/mc68hc11/hc11ops.h index c9d4b279f20..dea89b70ea9 100644 --- a/src/emu/cpu/mc68hc11/hc11ops.h +++ b/src/emu/cpu/mc68hc11/hc11ops.h @@ -49,7 +49,7 @@ static const hc11_opcode_list_struct hc11_opcode_list[] = { 0x18, 0xe4, HC11OP(andb_indy) }, { 0, 0x48, HC11OP(asla) }, { 0, 0x58, HC11OP(aslb) }, -// { 0, 0x78, HC11OP(asl_ext) }, + { 0, 0x78, HC11OP(asl_ext) }, // { 0, 0x68, HC11OP(asl_indx) }, // { 0x18, 0x68, HC11OP(asl_indy) }, // { 0, 0x47, HC11OP(asra) }, @@ -58,7 +58,7 @@ static const hc11_opcode_list_struct hc11_opcode_list[] = // { 0, 0x67, HC11OP(asr_indx) }, // { 0x18, 0x67, HC11OP(asr_indy) }, { 0, 0x24, HC11OP(bcc) }, -// { 0, 0x15, HC11OP(bclr_dir) }, + { 0, 0x15, HC11OP(bclr_dir) }, { 0, 0x1d, HC11OP(bclr_indx) }, // { 0x18, 0x1d, HC11OP(bclr_indy) }, { 0, 0x25, HC11OP(bcs) }, @@ -90,7 +90,7 @@ static const hc11_opcode_list_struct hc11_opcode_list[] = { 0, 0x12, HC11OP(brset_dir) }, { 0, 0x1e, HC11OP(brset_indx) }, // { 0x18, 0x1e, HC11OP(brset_indy) }, -// { 0, 0x14, HC11OP(bset_dir) }, + { 0, 0x14, HC11OP(bset_dir) }, { 0, 0x1c, HC11OP(bset_indx) }, // { 0x18, 0x1c, HC11OP(bset_indy) }, { 0, 0x8d, HC11OP(bsr) }, |