aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/msp430/words/q-branch.asm
diff options
context:
space:
mode:
Diffstat (limited to 'amforth-6.5/msp430/words/q-branch.asm')
-rw-r--r--amforth-6.5/msp430/words/q-branch.asm7
1 files changed, 0 insertions, 7 deletions
diff --git a/amforth-6.5/msp430/words/q-branch.asm b/amforth-6.5/msp430/words/q-branch.asm
deleted file mode 100644
index 5ec1563..0000000
--- a/amforth-6.5/msp430/words/q-branch.asm
+++ /dev/null
@@ -1,7 +0,0 @@
-;Z ?branch x -- branch if TOS zero
- CODEHEADER(XT_DOCONDBRANCH,7,"?branch")
- ADD #0,TOS ; 1 test TOS value
- MOV @PSP+,TOS ; 2 pop new TOS value (doesn't change flags)
- JZ dobran ; 2 if TOS was zero, take the branch
- ADD #2,IP ; 1 else skip the branch destination
- NEXT ; 4