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

atari8: started on js platform

This commit is contained in:
Steven Hugg
2022-08-29 21:00:52 -05:00
parent e4af92927d
commit ed7758d7e0
36 changed files with 26599 additions and 75 deletions
+2 -5
View File
@@ -40,7 +40,6 @@ var _sms = require('gen/platform/sms.js');
var _c64 = require('gen/platform/c64.js');
var _vectrex = require('gen/platform/vectrex.js');
var _zx = require('gen/platform/zx.js');
var _atari8 = require('gen/platform/atari8.js');
var util = require('gen/common/util.js');
util.loadScript = function(s) { console.log('tried to load',s); } // for vcs
@@ -360,13 +359,11 @@ describe('Platform Replay', () => {
}
});
});
/*
it('Should run atari 800xl', async () => {
await testPlatform('atari8-800xl', 'siegegame.bin', 92, (platform, frameno) => {
it('Should run atari800', async () => {
await testPlatform('atari8-800', 'siegegame.bin', 92, (platform, frameno) => {
if (frameno == 62) {
keycallback(Keys.VK_DOWN.c, Keys.VK_DOWN.c, 1);
}
});
});
*/
});