mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
fixed loadBIOS() caps
This commit is contained in:
parent
a4bfe11eee
commit
899e3f7067
@ -61,7 +61,7 @@ class NewApple2Platform extends Base6502MachinePlatform<AppleII> implements Plat
|
||||
getPresets() { return APPLE2_PRESETS; }
|
||||
getDefaultExtension() { return ".c"; };
|
||||
readAddress(a) { return this.machine.readConst(a); }
|
||||
// TODO loadBios(bios) { this.machine.loadBIOS(a); }
|
||||
// TODO loadBIOS(bios) { this.machine.loadBIOS(a); }
|
||||
getMemoryMap = function() { return { main:[
|
||||
{name:'I/O',start:0xc000,size:0x1000,type:'io'},
|
||||
{name:'ROM',start:0xd000,size:0x3000-6,type:'rom'},
|
||||
|
@ -32,7 +32,7 @@ class BallyAstrocadePlatform extends BaseZ80MachinePlatform<BallyAstrocade> impl
|
||||
getPresets() { return ASTROCADE_PRESETS; }
|
||||
getDefaultExtension() { return ".c"; };
|
||||
readAddress(a) { return this.machine.read(a); }
|
||||
loadBios(title,bios) { this.machine.loadBIOS(bios); }
|
||||
loadBIOS(title,bios) { this.machine.loadBIOS(bios); }
|
||||
getMemoryMap = function() { return { main:[
|
||||
{name:'BIOS',start:0x0,size:0x2000,type:'rom'},
|
||||
//{name:'Cart ROM',start:0x2000,size:0x2000,type:'rom'},
|
||||
|
@ -16,7 +16,7 @@ class Atari7800Platform extends Base6502MachinePlatform<Atari7800> implements Pl
|
||||
getPresets() { return Atari7800_PRESETS; }
|
||||
getDefaultExtension() { return ".c"; };
|
||||
readAddress(a) { return this.machine.readConst(a); }
|
||||
// TODO loadBios(bios) { this.machine.loadBIOS(a); }
|
||||
// TODO loadBIOS(bios) { this.machine.loadBIOS(a); }
|
||||
getMemoryMap = function() { return { main:[
|
||||
{name:'TIA',start:0x00,size:0x20,type:'io'},
|
||||
{name:'MARIA',start:0x20,size:0x20,type:'io'},
|
||||
|
@ -31,7 +31,7 @@ class C64Platform extends Base6502MachinePlatform<C64> implements Platform {
|
||||
getPresets() { return C64_PRESETS; }
|
||||
getDefaultExtension() { return ".c"; };
|
||||
readAddress(a) { return this.machine.readConst(a); }
|
||||
loadBios(bios) { this.machine.loadBIOS(bios); }
|
||||
loadBIOS(bios) { this.machine.loadBIOS(bios); }
|
||||
getMemoryMap() { return C64_MEMORY_MAP; }
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ class ColecoVisionPlatform extends BaseZ80MachinePlatform<ColecoVision> implemen
|
||||
getDefaultExtension() { return ".c"; };
|
||||
readAddress(a) { return this.machine.read(a); }
|
||||
readVRAMAddress(a) { return this.machine.readVRAMAddress(a); }
|
||||
// TODO loadBios(bios) { this.machine.loadBIOS(a); }
|
||||
// TODO loadBIOS(bios) { this.machine.loadBIOS(a); }
|
||||
getMemoryMap = function() { return { main:[
|
||||
{name:'BIOS',start:0x0,size:0x2000,type:'rom'},
|
||||
{name:'Cartridge Header',start:0x8000,size:0x100,type:'rom'},
|
||||
|
@ -43,7 +43,7 @@ class MSXPlatform extends BaseZ80MachinePlatform<MSX1> implements Platform {
|
||||
getDefaultExtension() { return ".c"; };
|
||||
readAddress(a) { return this.machine.read(a); }
|
||||
readVRAMAddress(a) { return this.machine.readVRAMAddress(a); }
|
||||
// TODO loadBios(bios) { this.machine.loadBIOS(a); }
|
||||
// TODO loadBIOS(bios) { this.machine.loadBIOS(a); }
|
||||
getMemoryMap = function() { return { main:[
|
||||
{name:'BIOS',start:0x0,size:0x4000,type:'rom'},
|
||||
//{name:'Cartridge',start:0x4000,size:0x4000,type:'rom'},
|
||||
|
@ -20,7 +20,7 @@ class VicDualPlatform extends BaseZ80MachinePlatform<VicDual> implements Platfor
|
||||
getPresets() { return VICDUAL_PRESETS; }
|
||||
getDefaultExtension() { return ".c"; };
|
||||
readAddress(a) { return this.machine.read(a); }
|
||||
// TODO loadBios(bios) { this.machine.loadBIOS(a); }
|
||||
// TODO loadBIOS(bios) { this.machine.loadBIOS(a); }
|
||||
getMemoryMap = function() { return { main:[
|
||||
{name:'Cell RAM',start:0xe000,size:32*32,type:'ram'},
|
||||
{name:'Tile RAM',start:0xe800,size:256*8,type:'ram'},
|
||||
|
Loading…
Reference in New Issue
Block a user