diff options
author | 2025-03-24 14:58:13 -0400 | |
---|---|---|
committer | 2025-03-24 14:58:13 -0400 | |
commit | bdee79bc42db00678529609419faa1aaa43c75de (patch) | |
tree | 7d6b0fa04853b4a58a85e3c9b682c6c302353cd3 /src/devices/cpu | |
parent | 4eed813fa18569ffa73201022adb40f9938c264a (diff) |
i960: Fix disassembly of ADD<cc>, SUB<cc> & SEL<cc> for cc = l, ne, le, o
Diffstat (limited to 'src/devices/cpu')
-rw-r--r-- | src/devices/cpu/i960/i960dis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/i960/i960dis.cpp b/src/devices/cpu/i960/i960dis.cpp index 7d9d26b32ad..5a408342f8d 100644 --- a/src/devices/cpu/i960/i960dis.cpp +++ b/src/devices/cpu/i960/i960dis.cpp @@ -43,7 +43,7 @@ const i960_disassembler::mnemonic_t i960_disassembler::mnemonic[256] = { { "68", 4, 0 }, { "69", 4, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, { "6C", 4, 0 }, { "6D", 4, 0 }, { "6E", 4, 0 }, { "?", 0, 0 }, { "70", 4, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, { "74", 4, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, // 70 - { "78", 4, 0 }, { "79", 4, 0 }, { "7A", 4, 0 }, { "7B", 4, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, + { "78", 4, 0 }, { "79", 4, 0 }, { "7A", 4, 0 }, { "7B", 4, 0 }, { "7C", 4, 0 }, { "7D", 4, 0 }, { "7E", 4, 0 }, { "7F", 4, 0 }, { "ldob", 3, 2 }, { "?", 0, 0 }, { "stob", 3, -2 }, { "?", 0, 0 }, { "bx", 3, 1 }, { "balx", 3, 2 }, { "callx", 3, 1 }, { "?", 0, 0 }, // 80 { "ldos", 3, 2 }, { "?", 0, 0 }, { "stos", 3, -2 }, { "?", 0, 0 }, { "lda", 3, 2 }, { "?", 0, 0 }, { "?", 0, 0 }, { "?", 0, 0 }, |