mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Extended debugging ROM
This commit is contained in:
parent
f4b0100c98
commit
5cd19cb521
@ -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
2059
js/roms/system/apple2ex.ts
Normal file
File diff suppressed because it is too large
Load Diff
@ -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'
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
] : [
|
] : [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user