diff options
| author | 2012-07-27 15:19:02 +0000 | |
|---|---|---|
| committer | 2012-07-27 15:19:02 +0000 | |
| commit | 8a56ebd8e93d9bc996d8782fda1385b338cd1444 (patch) | |
| tree | da27dea424b92e90334a9914991d1e5ace782bdc /src | |
| parent | e30859b7fc52cb824952c74a9b796115bb7a5ab5 (diff) | |
fixed bogus if-condition in src/emu/cpu/cop400/cop410ds.c
Diffstat (limited to 'src')
| -rw-r--r-- | src/emu/cpu/cop400/cop410ds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/cop400/cop410ds.c b/src/emu/cpu/cop400/cop410ds.c index 9680c10cf0b..513da9ad15b 100644 --- a/src/emu/cpu/cop400/cop410ds.c +++ b/src/emu/cpu/cop400/cop410ds.c @@ -195,7 +195,7 @@ CPU_DISASSEMBLE( cop410 ) case 0x33: bytes = 2; - if (next_opcode >= 0x60 || next_opcode <= 0x6F) + if (next_opcode >= 0x60 && next_opcode <= 0x6F) { sprintf(buffer, "LEI %x", next_opcode & 0xF); } |
