summaryrefslogtreecommitdiff
path: root/src/vm/instruction.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/instruction.js')
-rw-r--r--src/vm/instruction.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/vm/instruction.js b/src/vm/instruction.js
index 2afd3f7..f323f84 100644
--- a/src/vm/instruction.js
+++ b/src/vm/instruction.js
@@ -124,3 +124,21 @@ exports.JMZ = function(core, pc, ins) {
return [core.normalize(pc, 1)];
}
}
+
+
+exports.JMN = 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)];
+ }
+}