diff options
| author | Astrid Smith | 2010-06-10 20:28:31 -0700 |
|---|---|---|
| committer | Astrid Smith | 2010-06-10 20:28:31 -0700 |
| commit | ea86518d125691b55ead42f86c87f1d21736e0cc (patch) | |
| tree | b763ba5a7321934d61db1ff67e872b8bf8fcbf35 /main.asm | |
| parent | 64504eb68c6a6affe3b247a4b5b8f15e9e9b96b2 (diff) | |
Previous version doesn't assemble, added stub macros
Diffstat (limited to 'main.asm')
| -rw-r--r-- | main.asm | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -141,7 +141,16 @@ F_SUB_B MACRO ;14 bytes? ENDM ;; Do a SBC \2,\1 -F_ADC_B MACRO +F_SBC_B MACRO + ENDM + +F_AND_B MACRO + ENDM + +F_XOR_B MACRO + ENDM + +F_OR_B MACRO ENDM ;; Do an ADD \1,\2 @@ -1719,6 +1728,10 @@ emu_op_bf: START emu_op_c0: ;; RET NZ + ;; if ~Z + ;; PCl <- (SP) + ;; PCh <- (SP+1) + ;; SP <- (SP+2) START emu_op_c1: |
