summaryrefslogtreecommitdiff
path: root/src/vm/instruction.js
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2023-05-23 12:20:41 -0500
committersanine-a <sanine.not@pm.me>2023-05-23 12:20:41 -0500
commit70c42ab50d6eb78d0cc825d2d7f0b318398819ba (patch)
treec5b599c12f0eca4c4bdc8b18068b96288a3aa2eb /src/vm/instruction.js
parentd9dcab1271568f1c4bf70e97b707fb8cf42e10fd (diff)
implement JMZ
Diffstat (limited to 'src/vm/instruction.js')
-rw-r--r--src/vm/instruction.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/vm/instruction.js b/src/vm/instruction.js
index 878d20b..2afd3f7 100644
--- a/src/vm/instruction.js
+++ b/src/vm/instruction.js
@@ -107,3 +107,20 @@ exports.JMP = function(core, pc, ins) {
const dstLoc = core.getLocation(pc, ins.a);
return [dstLoc];
}
+
+
+exports.JMZ = function(core, pc, ins) {
+ let test
+ if (ins.b.mode === AddrMode.Immediate) {
+ test = (ins.b.value === 0);
+ } else {
+ const src = core.getValue(pc, ins.b);
+ test = (src.b.value === 0);
+ }
+
+ if (test) {
+ return [core.getLocation(pc, ins.a)];
+ } else {
+ return [core.normalize(pc, 1)];
+ }
+}