mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-25 18:33:11 +00:00
msx: msx.rom bios supported
This commit is contained in:
parent
868026c3f9
commit
d9dccb3df6
@ -97,6 +97,9 @@ export class MSX1 extends BaseZ80VDPBasedMachine {
|
||||
];
|
||||
}
|
||||
|
||||
loadBIOS(bios: Uint8Array) {
|
||||
this.bios = bios;
|
||||
}
|
||||
|
||||
getKeyboardMap() { return MSX_KEYCODE_MAP; }
|
||||
|
||||
|
@ -44,7 +44,6 @@ 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); }
|
||||
getMemoryMap = function() { return { main:[
|
||||
{name:'BIOS',start:0x0,size:0x4000,type:'rom'},
|
||||
//{name:'Cartridge',start:0x4000,size:0x4000,type:'rom'},
|
||||
|
Loading…
Reference in New Issue
Block a user