diff options
author | sanine-a <sanine.not@pm.me> | 2023-05-23 12:33:39 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2023-05-23 12:33:39 -0500 |
commit | 4d5377870ee554036ac9aab570ac2bc809fc88bd (patch) | |
tree | f6c15b854daeab756caa3e247926e884dfdeff86 /src/vm/instruction.js | |
parent | 86793f0afd74092be507325a40d85bc62bd47597 (diff) |
implement DJN
Diffstat (limited to 'src/vm/instruction.js')
-rw-r--r-- | src/vm/instruction.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/vm/instruction.js b/src/vm/instruction.js index f323f84..c235b9a 100644 --- a/src/vm/instruction.js +++ b/src/vm/instruction.js @@ -142,3 +142,23 @@ exports.JMN = function(core, pc, ins) { return [core.normalize(pc, 1)]; } } + + +exports.DJN = function(core, pc, ins) { + let test; + + if (ins.b.mode === AddrMode.Immediate) { + ins.b.value -= 1; + test = (ins.b.value !== 0); + } else { + const src = core.getValue(pc, ins.b); + src.b.value -= 1; + test = (src.b.value !== 0); + } + + if (test) { + return [core.getLocation(pc, ins.a)]; + } else { + return [core.normalize(pc, 1)]; + } +} |