1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-20 00:17:04 +00:00

started atari8 emulation; fixed memory view; show speed bar only when CRT

This commit is contained in:
Steven Hugg
2018-09-18 14:09:51 -04:00
parent 50ac618e86
commit 7b6af7ef04
13 changed files with 726 additions and 39 deletions
+8
View File
@@ -40,6 +40,7 @@ var _vector = require('gen/platform/vector.js');
var _williams = require('gen/platform/williams.js');
var _sound_williams = require('gen/platform/sound_williams.js');
var _astrocade = require('gen/platform/astrocade.js');
var _atari8 = require('gen/platform/atari8.js');
//
@@ -220,6 +221,13 @@ describe('Platform Replay', () => {
}
});
});
it('Should run atari8-5200', () => {
var platform = testPlatform('atari8-5200', 'hello.a.rom', 92, (platform, frameno) => {
if (frameno == 62) {
keycallback(Keys.VK_SPACE.c, Keys.VK_SPACE.c, 1);
}
});
});
});