AppleIIAsm-Collection/source/d5_strings/T.MIN.MAC.STRINGS.ASM
nathanriggs 9b12b6fd9b HOUSEKEEPING
- getting ready for major changes for 0.6.0.
- be sure to download the 0.5.0 release to ensure proper functionality, as these rountines will not work together in the SRC or BIN folder during the transition
- Beginning to significantly alter documentation
2019-12-17 17:19:24 -05:00

57 lines
1.1 KiB
NASM

SCMP MAC
STY SCRATCH
_MSTR ]1;WPAR1
_MSTR ]2;WPAR2
JSR STRCMP
LDY SCRATCH
<<<
SCAT MAC
STY SCRATCH
_MSTR ]1;WPAR1
_MSTR ]2;WPAR2
JSR STRCAT
LDY SCRATCH
<<<
SPRN MAC
STY SCRATCH
_AXLIT ]1
JSR PRNSTR
LDY SCRATCH
<<<
SPOS MAC
STY SCRATCH
_MSTR ]1;WPAR2
_MSTR ]2;WPAR1
JSR SUBPOS
LDY SCRATCH
<<<
SCPY MAC
STY SCRATCH
_MSTR ]1;WPAR1
LDA ]2
STA BPAR2
LDA ]3
STA BPAR1
JSR SUBCOPY
LDY SCRATCH
<<<
SDEL MAC
STY SCRATCH
_MSTR ]1;WPAR1
LDA ]2
STA BPAR2
LDA ]3
STA BPAR1
JSR SUBDEL
LDY SCRATCH
<<<
SINS MAC
STY SCRATCH
_MSTR ]1;WPAR2
_MSTR ]2;WPAR1
LDA ]3
STA BPAR1
JSR SUBINS
LDY SCRATCH
<<<