1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-27 12:29:32 +00:00
8bitworkshop/src/platform/mw8080bw.ts
2019-08-24 19:01:44 -04:00

27 lines
775 B
TypeScript

"use strict";
import { Midway8080 } from "../machine/mw8080bw";
import { BaseZ80MachinePlatform } from "../baseplatform";
import { Platform } from "../baseplatform";
import { PLATFORMS } from "../emu";
// http://www.computerarcheology.com/Arcade/
const MW8080BW_PRESETS = [
{ id: 'gfxtest.c', name: 'Graphics Test' },
{ id: 'shifter.c', name: 'Sprite w/ Bit Shifter' },
{ id: 'game2.c', name: 'Cosmic Impalas' },
];
class Midway8080BWPlatform extends BaseZ80MachinePlatform<Midway8080> implements Platform {
newMachine() { return new Midway8080(); }
getPresets() { return MW8080BW_PRESETS; }
getDefaultExtension() { return ".c"; };
readAddress(a) { return this.machine.read(a); }
}
PLATFORMS['mw8080bw'] = Midway8080BWPlatform;