From 9a90db556dbc25d3dc3f40d3c4909c8a65764563 Mon Sep 17 00:00:00 2001 From: Steven Hugg Date: Sat, 7 Dec 2019 15:19:24 -0600 Subject: [PATCH] williams: fixed step() --- index.html | 2 +- src/common/cpu/6809.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index b9d02ba6..d5ccec42 100644 --- a/index.html +++ b/index.html @@ -530,7 +530,7 @@ if (window.location.host.endsWith('8bitworkshop.com')) { --> - + diff --git a/src/common/cpu/6809.js b/src/common/cpu/6809.js index eb7b5e2d..687b3d12 100644 --- a/src/common/cpu/6809.js +++ b/src/common/cpu/6809.js @@ -2357,6 +2357,9 @@ return { step(); } }, + advanceInsn: function() { + return step(); + }, T:function(){return T;}, getTstates:function(){return T;}, setTstates:function(t){T=t;},