diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-01-16 19:07:33 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-01-16 19:07:33 -0800 |
commit | aa6c50d2bc62336fbdec06f7cb919c1656c332cf (patch) | |
tree | 1cce21d44b4fb1c633f0931769375cd84461e147 /baremetal | |
parent | 966daf14734380e47d415b1f649ac0de60e17247 (diff) | |
download | mu-aa6c50d2bc62336fbdec06f7cb919c1656c332cf.tar.gz |
7532
Diffstat (limited to 'baremetal')
-rw-r--r-- | baremetal/mu-init.subx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/baremetal/mu-init.subx b/baremetal/mu-init.subx index 3c52a0b7..0ed4f085 100644 --- a/baremetal/mu-init.subx +++ b/baremetal/mu-init.subx @@ -10,14 +10,14 @@ bd/copy-to-ebp 0/imm32 # always first run tests (run-tests) -c7 0/subop/copy *Default-next-x 0/imm32 -c7 0/subop/copy *Default-next-y 0/imm32 (num-test-failures) # => eax # call main if tests all passed { 3d/compare-eax-and 0/imm32 75/jump-if-!= break/disp8 (clear-real-screen) + c7 0/subop/copy *Default-next-x 0/imm32 + c7 0/subop/copy *Default-next-y 0/imm32 (main) } |