diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2021-02-13 13:59:48 -0500 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2021-02-13 13:59:48 -0500 |
commit | 8d7f27d9a0b61d3694a62f3e54be885d8073f02b (patch) | |
tree | b505454c79dba2e691ee19f716ccfd0d0aba1430 /test | |
parent | ac778a4d39ba6c80651ce20ce780dfe859c3dcff (diff) |
- Reverted back one commit before the previous commit.
This is because the previous commit actually created
a bug, rather than fixing one.
- Added JMP, and JSR to the ortho extension, and
implemented them both in the assembler, and
emulator.
Diffstat (limited to 'test')
-rw-r--r-- | test/ortho.s | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ortho.s b/test/ortho.s index c7cdd83..6499d6e 100644 --- a/test/ortho.s +++ b/test/ortho.s @@ -32,6 +32,8 @@ reset: lea s, count mov (e), #0 mov a, (e) + lea d, loop + jmp (d) loop: inc b inc.q count |