mirror of
https://github.com/cc65/cc65.git
synced 2025-02-14 19:30:52 +00:00
4510 support: yet another round up little updates
This commit is contained in:
parent
4384603eeb
commit
48f64de720
@ -7,6 +7,7 @@ CPU_ISET_65C02 = $0010
|
||||
CPU_ISET_65816 = $0020
|
||||
CPU_ISET_SWEET16 = $0040
|
||||
CPU_ISET_HUC6280 = $0080
|
||||
CPU_ISET_4510 = $0100
|
||||
|
||||
; CPU capabilities
|
||||
CPU_NONE = CPU_ISET_NONE
|
||||
@ -17,3 +18,4 @@ CPU_65C02 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02
|
||||
CPU_65816 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65816
|
||||
CPU_SWEET16 = CPU_ISET_SWEET16
|
||||
CPU_HUC6280 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02|CPU_ISET_HUC6280
|
||||
CPU_4510 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02|CPU_ISET_4510
|
||||
|
@ -1579,7 +1579,7 @@ static void Put4510 (const InsDesc* Ins)
|
||||
case 0xB3: A.Opcode = 0xE2; break;
|
||||
case 0xD0: A.Opcode = 0xC2; break;
|
||||
case 0xFC: A.Opcode = 0x23; break;
|
||||
default: /*nothing*/ break;
|
||||
default: /* Keep opcode as it is */ break;
|
||||
}
|
||||
|
||||
/* No error, output code */
|
||||
|
Loading…
x
Reference in New Issue
Block a user