Extended debugging ROM

This commit is contained in:
Will Scullin 2021-07-17 16:23:49 -07:00
parent f4b0100c98
commit 5cd19cb521
No known key found for this signature in database
GPG Key ID: 26DCD1042C6638CD
3 changed files with 2068 additions and 0 deletions

View File

@ -27,6 +27,11 @@ switch (romVersion) {
characterRom = 'rmfont_char'; characterRom = 'rmfont_char';
enhanced = true; enhanced = true;
break; break;
case 'apple2ex':
rom = 'apple2ex';
characterRom = 'apple2enh_char';
enhanced = true;
break;
default: default:
rom = 'apple2enh'; rom = 'apple2enh';
characterRom = 'apple2enh_char'; characterRom = 'apple2enh_char';

2059
js/roms/system/apple2ex.ts Normal file

File diff suppressed because it is too large Load Diff

View File

@ -31,6 +31,10 @@ export class System implements OptionHandler {
value: 'apple2rm', value: 'apple2rm',
name: 'Enhanced Apple //e (Reactive Micro)' name: 'Enhanced Apple //e (Reactive Micro)'
}, },
{
value: 'apple2ex',
name: 'Apple //e Extended Debugging'
},
] ]
} }
] : [ ] : [