1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

4510 support: yet another round up little updates

This commit is contained in:
Sven Oliver Moll 2016-08-31 20:18:54 +02:00
parent 4384603eeb
commit 48f64de720
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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 */