1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 08:41:30 +00:00
8bitworkshop/src/platform/atari7800.ts

41 lines
1.5 KiB
TypeScript
Raw Normal View History

import { Atari7800 } from "../machine/atari7800";
import { Platform, Base6502MachinePlatform } from "../common/baseplatform";
import { PLATFORMS } from "../common/emu";
var Atari7800_PRESETS = [
{id:'sprites.dasm', name:'Sprites (ASM)'},
{id:'wsync.c', name:'WSYNC'},
2019-12-15 16:59:53 +00:00
{id:'sprites.c', name:'Double Buffering'},
2019-10-20 16:53:10 +00:00
{id:'scroll.c', name:'Scrolling'},
];
class Atari7800Platform extends Base6502MachinePlatform<Atari7800> implements Platform {
newMachine() { return new Atari7800(); }
getPresets() { return Atari7800_PRESETS; }
getDefaultExtension() { return ".c"; };
readAddress(a) { return this.machine.readConst(a); }
2020-01-27 05:59:09 +00:00
// TODO loadBIOS(bios) { this.machine.loadBIOS(a); }
2019-08-27 16:12:56 +00:00
getMemoryMap = function() { return { main:[
{name:'TIA',start:0x00,size:0x20,type:'io'},
{name:'MARIA',start:0x20,size:0x20,type:'io'},
{name:'RAM (6166 Block 0)',start:0x40,size:0xc0,type:'ram'},
{name:'RAM (6166 Block 1)',start:0x140,size:0xc0,type:'ram'},
{name:'PIA',start:0x280,size:0x18,type:'io'},
{name:'RAM',start:0x1800,size:0x1000,type:'ram'}, // TODO: shadow ram
{name:'Cartridge ROM',start:0x4000,size:0xc000-6,type:'rom'},
{name:'CPU Vectors',start:0xfffa,size:0x6,type:'rom'},
2019-08-27 16:12:56 +00:00
] } };
getROMExtension() { return ".a78"; }
getDebugTree() {
let tree = super.getDebugTree();
tree['display_list'] = this.machine.getDebugDisplayLists();
return tree;
}
}
///
PLATFORMS['atari7800'] = Atari7800Platform;