mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2026-04-20 00:17:04 +00:00
updated c64/zx .wasm emulators
This commit is contained in:
Binary file not shown.
BIN
Binary file not shown.
+2
-2
@@ -52,9 +52,9 @@ export class C64_WASMMachine extends BaseWASMMachine implements Machine, Probeab
|
||||
var cmd = "SYS "+this.prgstart+"\r";
|
||||
for (var i=0; i<cmd.length; i++) {
|
||||
var key = cmd.charCodeAt(i);
|
||||
this.exports.machine_exec(this.sys, 10000);
|
||||
this.exports.machine_exec(this.sys, 20000);
|
||||
this.exports.machine_key_down(this.sys, key);
|
||||
this.exports.machine_exec(this.sys, 10000);
|
||||
this.exports.machine_exec(this.sys, 20000);
|
||||
this.exports.machine_key_up(this.sys, key);
|
||||
}
|
||||
// advance clock until program starts
|
||||
|
||||
Reference in New Issue
Block a user