summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Smith2010-09-10 20:04:45 -0700
committerDuncan Smith2010-09-10 20:04:45 -0700
commit8bfa07abdc14e783419e91296480c5ecd57582f3 (patch)
treebf625a327e77856912b2449e5a8c050d65b795b5
parent2491a9745e7ac11ed3576a40837f0fde30c7f426 (diff)
Widened spacing to 64 bytes/instr to give myself some breathing room for now
-rw-r--r--opcodes.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes.asm b/opcodes.asm
index 2bdd263..95ae940 100644
--- a/opcodes.asm
+++ b/opcodes.asm
@@ -100,7 +100,7 @@ _align SET 0
START MACRO
ORG emu_plain_op+_align
-_align SET _align+$20
+_align SET _align+$40
ENDM
;; This is run at the end of every instruction routine.
@@ -108,7 +108,7 @@ DONE MACRO
clr.w d0 ; 4 cycles / 2 bytes
move.b (epc)+,d0 ; 8 cycles / 2 bytes
move.b d0,$4c00+32*(128/8)
- rol.w #5,d0 ;16 cycles / 2 bytes
+ rol.w #6,d0 ;18 cycles / 2 bytes
jmp 0(a5,d0.w) ;14 cycles / 4 bytes
;; overhead: 42 cycles /10 bytes
ENDM