A2osX/BIN/ASM.S.SRC.txt

873 lines
15 KiB
Plaintext
Raw Normal View History

NEW
PREFIX /A2OSX.BUILD
AUTO 4,1
2015-10-06 16:14:48 +00:00
*---------------------------------------
2018-02-05 07:09:38 +00:00
SRC.ParseLine jsr OUT.Reset
jsr SRC.GetChar
bcs .8
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
cmp #'*' Comment?
beq .8
2018-01-11 16:34:09 +00:00
cmp #';' Comment?
beq .8
2015-11-20 16:31:14 +00:00
2018-02-05 07:09:38 +00:00
>LDA.G ASM.DO.StackPtr
beq .1
clc
adc #ASM.DO.Stack-1
tay
lda (pData),y
beq .8
2018-02-05 07:09:38 +00:00
.1 >LDA.G MAC.bAdd
2018-01-29 16:48:07 +00:00
bmi SRC.ParseLine.MACRO
jmp SRC.ParseLine.LABEL
.8 clc
rts
SRC.ParseLine.Macro >LDA.G ASM.PASS If Pass#2, ignore
bne .8
lda (ZPLinePtr)
cmp #' ' No label, scan to DIR/OP if any
bne .1
jsr SRC.GetNextCharNB
bcs .8
lda #' ' Store ONE blank
jsr MAC.AddChar
bcs .90
2018-01-29 16:48:07 +00:00
lda (ZPLinePtr) get back non blank char
bra .2
.1 jsr MAC.AddChar
bcs .99
jsr SRC.GetNextChar
bcs .80
2018-01-29 16:48:07 +00:00
cmp #' '
bne .1
jsr MAC.AddChar
.90 bcs .99
2018-01-29 16:48:07 +00:00
jsr SRC.GetNextCharNB
bcs .80
2018-01-29 16:48:07 +00:00
.2 cmp #'.' Directive ?
bne .4
ldy #1
lda (ZPLinePtr),y
beq .3
cmp #'E'
beq .21
cmp #'e'
bne .3
.21 iny
lda (ZPLinePtr),y
beq .3
cmp #'M'
beq .22
cmp #'m'
bne .3
.22 jsr MAC.Store
bcs SRC.ParseLine.RTS
lda #0
>STA.G MAC.bAdd
.8 clc
rts
.80 lda #0
jmp MAC.AddChar
2018-01-29 16:48:07 +00:00
.3 lda (ZPLinePtr)
.4 jsr MAC.AddChar
bcs .99
jsr SRC.GetNextChar
bcs .80
2018-01-29 16:48:07 +00:00
cmp #' '
bne .4
jsr SRC.GetNextChar
bcs .8
cmp #' '
beq .80 Comments...
pha
lda #' '
jsr MAC.AddChar
pla
bcs .99
2018-01-29 16:48:07 +00:00
.5 jsr MAC.AddChar Store ARG....
bcs .99
jsr SRC.GetNextChar
bcs .80
2018-01-29 16:48:07 +00:00
cmp #' '
bne .5
lda #0
jmp MAC.AddChar End of Line
2018-01-29 16:48:07 +00:00
clc
rts
.99 lda #ERR.MACRO.TOO.BIG
sec
SRC.ParseLine.RTS rts
*---------------------------------------
SRC.ParseLine.LABEL lda #0
>STA.G SYM.bGlobal
jsr SRC.GetChar
cmp #' ' no label...go scan dir/opcode
beq SRC.ParseLine.DirOp
2015-10-06 16:14:48 +00:00
cmp #'.' local symbol?
2018-01-29 07:41:05 +00:00
bne .1
jsr SRC.GetNextChar
bcs SRC.ParseLine.InvLbl
2018-01-22 16:52:04 +00:00
jsr SRC.GetDecimal
bcs SRC.ParseLine.InvLbl
2018-01-23 07:31:16 +00:00
2018-01-22 16:52:04 +00:00
lda SRC.ACC+1
ora SRC.ACC+2
ora SRC.ACC+3
bne SRC.ParseLine.InvLbl Max .255
2018-01-22 16:52:04 +00:00
lda SRC.ACC
beq SRC.ParseLine.InvLbl .0 is not allowed
2018-01-22 16:52:04 +00:00
jsr SYM.AddLocalPC
2018-01-29 16:48:07 +00:00
bcs SRC.ParseLine.RTS
2018-01-29 07:41:05 +00:00
bra SRC.ParseLine.DirOp
2018-01-29 16:48:07 +00:00
2018-01-29 07:41:05 +00:00
.1 lda #$ff
>STA.G SYM.bGlobal
inc
sta (ZPLocalBuf)
>LDA.G ASM.PASS
2018-01-29 07:41:05 +00:00
bne .3
jsr SYM.AddGlobalPC Pass #1; try to add global...
bcc SRC.ParseLine.DirOp yes!!! go scan dir/op
jsr SYM.LookupGlobal already defined...get it
>LDA.G SYM.Lookup+SYM.F
bit #SYM.F.RW
bne .2 R/W, always update...
bit #SYM.F.RESOLVED
bne SRC.ParseLine.Redef
.2 jsr SYM.UpdateGlobal
bra SRC.ParseLine.DirOp
2018-01-29 16:48:07 +00:00
.3 jsr SYM.LookupGlobal Pass #2: should be already defined...
2018-01-29 07:41:05 +00:00
bcs SRC.ParseLine.Undef
2018-01-22 07:34:59 +00:00
jsr SYM.UpdateGlobalPC
2018-01-29 07:41:05 +00:00
*---------------------------------------
SRC.ParseLine.DirOp jsr SRC.GetNextCharNB Scan for an Opcode...
2018-01-23 07:31:16 +00:00
bcs SRC.ParseLine.Ok
2015-10-06 16:14:48 +00:00
cmp #'.'
2015-10-09 15:53:30 +00:00
bne .5
2015-10-06 16:14:48 +00:00
jsr SRC.GetNextChar
bcs SRC.ParseLine.InvDir
2018-01-11 16:34:09 +00:00
2015-10-09 15:53:30 +00:00
jsr SRC.ParseLine.Dir
bcs SRC.ParseLine.Err
2015-10-06 16:14:48 +00:00
bra SRC.ParseLine.Ok
2015-10-28 16:55:12 +00:00
.5 cmp #'>'
bne .6
2018-01-29 16:48:07 +00:00
jsr SRC.ParseLine.ExecMacro
2015-10-28 16:55:12 +00:00
bcs SRC.ParseLine.Err
bra SRC.ParseLine.Ok
2018-01-11 16:34:09 +00:00
.6 jsr SRC.ParseLine.OpCode
2015-10-09 15:53:30 +00:00
bcs SRC.ParseLine.Err
2015-10-06 16:14:48 +00:00
SRC.ParseLine.Ok clc
2015-10-06 16:14:48 +00:00
rts
2015-12-17 16:57:35 +00:00
SRC.ParseLine.InvLbl
lda #ERR.INV.LABEL
2015-10-06 16:14:48 +00:00
SRC.ParseLine.Err sec
rts
2015-12-04 16:33:33 +00:00
SRC.ParseLine.Redef lda #ERR.SYMBOL.REDEF
2015-11-20 16:31:14 +00:00
sec
rts
SRC.ParseLine.Undef lda #ERR.UNDEF.SYMBOL
sec
rts
SRC.ParseLine.InvDir
lda #ERR.INV.DIR
2015-11-20 16:31:14 +00:00
sec
rts
2015-10-09 15:53:30 +00:00
*---------------------------------------
2015-10-06 16:14:48 +00:00
SRC.ParseLine.Dir >LDYA L.T.DIRECTIVES
jsr SRC.GetKeyword
2018-01-11 16:34:09 +00:00
bcs SRC.ParseLine.InvDir
2015-10-06 16:14:48 +00:00
jmp (J.DIRECTIVES,x)
*---------------------------------------
2018-01-29 16:48:07 +00:00
SRC.ParseLine.ExecMacro
2018-01-29 07:41:05 +00:00
2015-10-06 16:14:48 +00:00
clc
rts
*---------------------------------------
2015-10-28 16:55:12 +00:00
SRC.ParseLine.OpCode
stz SRC.AM.ID
2018-01-15 06:50:44 +00:00
>LDYA ZPOPtr
2015-10-28 16:55:12 +00:00
>STYA ZPPtr1
2018-01-26 07:04:29 +00:00
.1 lda (ZPPtr1) End Of OpCode List
2018-01-12 16:05:44 +00:00
ldy #1
2018-01-15 06:50:44 +00:00
ora (ZPPtr1),y
2015-10-28 16:55:12 +00:00
beq .9
2018-01-15 06:50:44 +00:00
lda ZPPtr1
2018-01-12 16:05:44 +00:00
clc
adc #2
2018-01-15 06:50:44 +00:00
sta ZPPtr2
lda ZPPtr1+1
2018-01-12 16:05:44 +00:00
adc #0
2018-01-15 06:50:44 +00:00
sta ZPPtr2+1
2018-01-12 16:05:44 +00:00
2018-01-15 06:50:44 +00:00
lda (ZPPtr2)
2018-01-11 16:34:09 +00:00
tax
ldy #0
2015-10-28 16:55:12 +00:00
2018-01-26 07:04:29 +00:00
.2 lda (ZPLinePtr),y
beq .7
2018-01-26 07:04:29 +00:00
2018-01-12 16:05:44 +00:00
cmp #'a'
2018-01-26 07:04:29 +00:00
bcc .3
2018-01-12 16:05:44 +00:00
cmp #'z'+1
2018-01-26 07:04:29 +00:00
bcs .3
2018-01-12 16:05:44 +00:00
eor #$20
2018-01-26 07:04:29 +00:00
.3 iny
2018-01-15 06:50:44 +00:00
cmp (ZPPtr2),y
bne .7
2015-10-28 16:55:12 +00:00
2018-01-11 16:34:09 +00:00
dex
2018-01-26 07:04:29 +00:00
bne .2
lda (ZPLinePtr),y
beq .8 End of Line, no AM
2015-10-28 16:55:12 +00:00
cmp #' ' A space after opcode ?
bne .7
2015-11-27 16:26:11 +00:00
2018-01-26 07:04:29 +00:00
tya
sec skip OP + ' '
2018-01-26 07:04:29 +00:00
adc ZPLinePtr
sta ZPLinePtr
bcc .5
2015-11-27 16:26:11 +00:00
2018-01-26 07:04:29 +00:00
inc ZPLinePtr+1
.5 bra SRC.ParseLine.AM
2015-11-20 16:31:14 +00:00
.7 lda ZPPtr1
2015-10-28 16:55:12 +00:00
clc
2018-01-15 06:50:44 +00:00
adc (ZPPtr1)
2015-10-28 16:55:12 +00:00
tax
2018-01-15 06:50:44 +00:00
lda ZPPtr1+1
2015-10-28 16:55:12 +00:00
ldy #1
2018-01-15 06:50:44 +00:00
adc (ZPPtr1),y
stx ZPPtr1
sta ZPPtr1+1
2018-01-26 07:04:29 +00:00
bra .1
2015-10-28 16:55:12 +00:00
.8 clc
rts
2018-01-11 16:34:09 +00:00
.9 lda #ERR.INV.OPCODE
2015-10-28 16:55:12 +00:00
sec
2015-10-30 16:34:59 +00:00
.99 rts
*---------------------------------------
SRC.ParseLine.AM stz SRC.AM.StrBuf
2015-10-30 16:34:59 +00:00
.1 jsr SRC.GetChar
bcs .8
.10 cmp #' ' another space ?
2015-10-30 16:34:59 +00:00
beq .8 ignore end of line (comment)
jsr SRC.IsAMReserved
bcs .2
inc SRC.AM.StrBuf
ldx SRC.AM.StrBuf
sta SRC.AM.StrBuf,x
bra .7
2015-10-30 16:34:59 +00:00
2015-12-17 16:57:35 +00:00
.2 jsr SRC.IsMODReserved
bcs .3
2015-12-17 16:57:35 +00:00
lda #'#'
inc SRC.AM.StrBuf
ldx SRC.AM.StrBuf
sta SRC.AM.StrBuf,x
jsr SRC.GetNextChar
bcs .9
2015-10-30 16:34:59 +00:00
.3 jsr SRC.IsLetter Any register?
bcs .6 no, try something else
2018-01-23 07:31:16 +00:00
>LDYA ZPRPtr Check in register table
jsr SRC.GetKeyword
bcs .6
2018-01-23 07:31:16 +00:00
lda (ZPPtr1) get register len
tax
2015-10-30 16:34:59 +00:00
ldy SRC.AM.StrBuf
2015-10-30 16:34:59 +00:00
.4 inc ZPPtr1
bne .5
inc ZPPtr1+1
2015-10-30 16:34:59 +00:00
.5 lda (ZPPtr1)
2015-10-30 16:34:59 +00:00
iny
sta SRC.AM.StrBuf,y
dex
bne .4
2015-10-30 16:34:59 +00:00
sty SRC.AM.StrBuf
2018-01-11 16:34:09 +00:00
bra .1
2018-01-11 16:34:09 +00:00
.6 jsr EXP.Eval
2015-10-30 16:34:59 +00:00
bcs .99
2015-12-17 16:57:35 +00:00
ldx #3
.73 lda SRC.ACC,x
bne .72
dex
bne .73
.72 inx
lda #'a'
2015-12-17 16:57:35 +00:00
ldy SRC.AM.StrBuf
.71 iny
sta SRC.AM.StrBuf,y
dex
bne .71
2015-10-30 16:34:59 +00:00
sty SRC.AM.StrBuf
bra .1
2015-10-30 16:34:59 +00:00
.7 jsr SRC.GetNextChar
bcc .10
2015-10-30 16:34:59 +00:00
.8 clc
rts
2018-01-11 16:34:09 +00:00
.9 lda #ERR.INV.AM.SYN
2015-10-30 16:34:59 +00:00
sec
.99 rts
2015-10-28 16:55:12 +00:00
*---------------------------------------
SRC.GetDecimal jsr SRC.GetChar
beq .99
stz SRC.ACC+1
2015-10-06 16:14:48 +00:00
stz SRC.ACC+2
stz SRC.ACC+3
jsr SRC.IsDigit10
bcs .99
2018-01-11 16:34:09 +00:00
2015-10-06 16:14:48 +00:00
and #$0F
sta SRC.ACC
2018-01-11 16:34:09 +00:00
.1 jsr SRC.GetNextChar
2018-01-23 07:31:16 +00:00
bcs .8
2018-01-11 16:34:09 +00:00
2015-10-06 16:14:48 +00:00
cmp #' '
2018-01-11 16:34:09 +00:00
beq .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsEXPReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsAMReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-10-06 16:14:48 +00:00
jsr SRC.IsDigit10
2018-01-11 16:34:09 +00:00
bcs .9
2015-10-06 16:14:48 +00:00
and #$0F
pha
jsr SRC.ACC10
pla
bcs .9
2015-11-20 16:31:14 +00:00
2015-10-06 16:14:48 +00:00
adc SRC.ACC
sta SRC.ACC
bcc .1
inc SRC.ACC+1
bne .1
inc SRC.ACC+2
bne .1
inc SRC.ACC+3
bne .1
.9 lda #ERR.VAL.TOO.BIG
sec
rts
2015-11-27 16:26:11 +00:00
2015-10-06 16:14:48 +00:00
.8 clc
rts
2015-10-28 16:55:12 +00:00
.99 lda #ERR.SYNTAX.ERROR
sec
rts
*---------------------------------------
SRC.GetHex jsr SRC.GetNextChar skip '$'
bcs .99
stz SRC.ACC+1
2015-10-28 16:55:12 +00:00
stz SRC.ACC+2
stz SRC.ACC+3
jsr SRC.IsDigit16
bcs .99
2015-11-20 16:31:14 +00:00
2015-10-28 16:55:12 +00:00
sta SRC.ACC
2018-01-11 16:34:09 +00:00
.1 jsr SRC.GetNextChar
2018-01-23 07:31:16 +00:00
bcs .8
2015-10-28 16:55:12 +00:00
cmp #' '
2018-01-11 16:34:09 +00:00
beq .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsEXPReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsAMReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-10-28 16:55:12 +00:00
jsr SRC.IsDigit16
bcs .99
ldx #4
2015-11-20 16:31:14 +00:00
.2 asl SRC.ACC
2015-10-28 16:55:12 +00:00
rol SRC.ACC+1
rol SRC.ACC+2
rol SRC.ACC+3
bcs .9
dex
bne .2
2015-11-20 16:31:14 +00:00
ora SRC.ACC
sta SRC.ACC
2015-10-28 16:55:12 +00:00
bra .1
.8 clc
rts
.9 lda #ERR.VAL.TOO.BIG
sec
rts
2015-10-30 16:34:59 +00:00
.99 lda #ERR.SYNTAX.ERROR
sec
rts
*---------------------------------------
SRC.GetOctal jsr SRC.GetNextChar skip '&'
bcs .99
stz SRC.ACC+1
2015-10-30 16:34:59 +00:00
stz SRC.ACC+2
stz SRC.ACC+3
jsr SRC.IsDigit8
bcs .99
2018-01-11 16:34:09 +00:00
2015-10-30 16:34:59 +00:00
and #$0F
sta SRC.ACC
2018-01-11 16:34:09 +00:00
.1 jsr SRC.GetNextChar
2018-01-23 07:31:16 +00:00
bcs .8
2018-01-11 16:34:09 +00:00
2015-10-30 16:34:59 +00:00
cmp #' '
2018-01-11 16:34:09 +00:00
beq .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsEXPReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsAMReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-10-30 16:34:59 +00:00
jsr SRC.IsDigit8
2018-01-11 16:34:09 +00:00
bcs .9
2015-10-30 16:34:59 +00:00
asl
asl
asl
asl
asl
ldx #3
.2 asl
rol SRC.ACC
rol SRC.ACC+1
rol SRC.ACC+2
rol SRC.ACC+3
bcs .9
dex
bne .2
bra .1
.8 clc
rts
.9 lda #ERR.VAL.TOO.BIG
sec
rts
2015-10-28 16:55:12 +00:00
.99 lda #ERR.SYNTAX.ERROR
sec
rts
*---------------------------------------
SRC.GetBinary jsr SRC.GetNextChar skip '%'
bcs .99
stz SRC.ACC+1
2015-10-28 16:55:12 +00:00
stz SRC.ACC+2
stz SRC.ACC+3
cmp #'1'
beq .10
2018-01-11 16:34:09 +00:00
2015-10-28 16:55:12 +00:00
cmp #'0'
bne .99
2018-01-11 16:34:09 +00:00
2015-10-28 16:55:12 +00:00
.10 and #$01
sta SRC.ACC
2018-01-11 16:34:09 +00:00
.1 jsr SRC.GetNextChar
2018-01-23 07:31:16 +00:00
bcs .8
2018-01-11 16:34:09 +00:00
2015-11-27 16:26:11 +00:00
cmp #' '
2018-01-11 16:34:09 +00:00
beq .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsEXPReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-11-27 16:26:11 +00:00
jsr SRC.IsAMReserved
2018-01-11 16:34:09 +00:00
bcc .8
2015-10-28 16:55:12 +00:00
cmp #'1'
beq .11
2018-01-11 16:34:09 +00:00
2015-10-28 16:55:12 +00:00
cmp #'0'
bne .8
.11 lsr
rol SRC.ACC
rol SRC.ACC+1
rol SRC.ACC+2
rol SRC.ACC+3
bcs .9
bra .1
.8 clc
rts
.9 lda #ERR.VAL.TOO.BIG
sec
rts
2015-10-06 16:14:48 +00:00
.99 lda #ERR.SYNTAX.ERROR
sec
rts
*---------------------------------------
2018-01-11 16:34:09 +00:00
SRC.GetKeyword >STYA ZPPtr1 KeyWord table
2015-10-06 16:14:48 +00:00
stz SRC.Keyword.ID
2018-01-11 16:34:09 +00:00
.1 lda (ZPPtr1)
beq .9 End Of table
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
tax KW len
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
.2 ldy #0
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
.3 lda (ZPLinePtr),y
beq .5
2018-01-15 06:50:44 +00:00
jsr SRC.IsKeywordLetterUC
2018-01-11 16:34:09 +00:00
bcs .5
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
iny
cmp (ZPPtr1),y
bne .5
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
dex
bne .3
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
lda (ZPLinePtr),y All chars match...
beq .4 End of Line ?
2015-10-06 16:14:48 +00:00
jsr SRC.IsKeywordLetterUC
2018-01-11 16:34:09 +00:00
bcc .5 Additional letters...
2015-10-06 16:14:48 +00:00
2018-01-11 16:34:09 +00:00
.4 lda ZPLinePtr
clc
adc (ZPPtr1)
sta ZPLinePtr
bcc .41
inc ZPLinePtr+1
.41 ldx SRC.Keyword.ID
2015-10-06 16:14:48 +00:00
clc
rts
2018-01-11 16:34:09 +00:00
.5 lda (ZPPtr1)
sec Add keyword Len+1
adc ZPPtr1
sta ZPPtr1
bcc .6
inc ZPPtr1+1
.6 inc SRC.Keyword.ID
inc SRC.Keyword.ID
bra .1
2015-10-06 16:14:48 +00:00
.9 sec
rts
*---------------------------------------
2015-10-30 16:34:59 +00:00
SRC.IsAMReserved ldx SRC.AM.RESERVED
.1 cmp SRC.AM.RESERVED,x
beq .8
dex
bne .1
sec
rts
.8 clc
rts
*---------------------------------------
2015-12-17 16:57:35 +00:00
SRC.IsMODReserved ldx SRC.MOD.RESERVED
.1 cmp SRC.MOD.RESERVED,x
beq .8
dex
bne .1
sec
rts
2018-01-23 07:31:16 +00:00
2015-12-17 16:57:35 +00:00
.8 clc
rts
*---------------------------------------
2015-10-30 16:34:59 +00:00
SRC.IsEXPReserved ldx SRC.EXP.RESERVED
.1 cmp SRC.EXP.RESERVED,x
beq SRC.IsEXPReserved.8
2015-10-30 16:34:59 +00:00
dex
bne .1
sec
rts
2018-01-23 07:31:16 +00:00
SRC.IsEXPReserved.8 clc
2015-10-30 16:34:59 +00:00
rts
*---------------------------------------
SRC.IsKeywordLetterUC
cmp #'.'
beq SRC.IsEXPReserved.8
cmp #'_'
beq SRC.IsEXPReserved.8
cmp #'A'
bcc .9
cmp #'Z'+1
bcc .99
cmp #'a'
bcc .9
cmp #'z'+1
eor #$20
rts CC if lowercase
.9 sec
.99 rts
*---------------------------------------
2015-10-06 16:14:48 +00:00
SRC.IsLetterOrDigit jsr SRC.IsDigit10
bcc SRC.IsLetterRTS
*---------------------------------------
SRC.IsLetter cmp #'A'
bcc .9
2015-11-13 16:25:31 +00:00
cmp #'Z'+1
2015-10-06 16:14:48 +00:00
bcc SRC.IsLetterRTS
cmp #'a'
bcc .9
2015-11-13 16:25:31 +00:00
cmp #'z'+1
2015-10-06 16:14:48 +00:00
rts CC if lowercase
.9 sec
SRC.IsLetterRTS rts
*---------------------------------------
2015-10-28 16:55:12 +00:00
SRC.IsDigit16 jsr SRC.IsDigit10
bcc .8
cmp #'A'
bcc .9
2015-11-20 16:31:14 +00:00
cmp #'F'+1
2015-10-28 16:55:12 +00:00
bcc .1
cmp #'a'
bcc .9
cmp #'f'+1
bcs .9
eor #$20
.1
* clc
sbc #'A'-11 cc so A->10 (11-CC)
2015-10-28 16:55:12 +00:00
clc
2015-10-28 16:55:12 +00:00
.8 and #$0F
rts
.9 sec
rts
*---------------------------------------
2015-10-06 16:14:48 +00:00
SRC.IsDigit10 cmp #'0'
bcc .9
2015-10-28 16:55:12 +00:00
cmp #'9'+1
2015-10-06 16:14:48 +00:00
rts cc if ok, cs if not
2015-10-30 16:34:59 +00:00
.9 sec
rts
*---------------------------------------
SRC.IsDigit8 cmp #'0'
bcc .9
cmp #'7'+1
rts cc if ok, cs if not
2018-01-11 16:34:09 +00:00
.9 sec
rts
*---------------------------------------
SRC.GetNextCharNB jsr SRC.GetNextChar
2018-01-23 07:31:16 +00:00
bcs .9
2018-01-11 16:34:09 +00:00
cmp #' '
beq SRC.GetNextCharNB
2018-01-23 07:31:16 +00:00
clc
2015-10-06 16:14:48 +00:00
.9 rts
*---------------------------------------
2018-01-11 16:34:09 +00:00
SRC.GetNextCharUC jsr SRC.GetNextChar
2015-10-06 16:14:48 +00:00
bcs .9
2018-01-11 16:34:09 +00:00
cmp #'a'
2018-01-23 07:31:16 +00:00
bcc .8
2018-01-11 16:34:09 +00:00
cmp #'z'+1
2018-01-23 07:31:16 +00:00
bcs .8
2018-01-11 16:34:09 +00:00
eor #$20 to Uppercase
2018-01-23 07:31:16 +00:00
.8 clc
2018-01-11 16:34:09 +00:00
.9 rts
*---------------------------------------
SRC.GetNextChar lda (ZPLinePtr)
beq SRC.GetChar.ERR
2018-01-23 07:31:16 +00:00
cmp #$0D
beq SRC.GetChar.ERR
2018-01-11 16:34:09 +00:00
inc ZPLinePtr
bne SRC.GetChar
2018-01-11 16:34:09 +00:00
inc ZPLinePtr+1
SRC.GetChar lda (ZPLinePtr)
beq SRC.GetChar.ERR
2018-01-23 07:31:16 +00:00
cmp #$0D
beq SRC.GetChar.ERR
2018-01-23 07:31:16 +00:00
clc
rts
SRC.GetChar.ERR sec
2018-01-23 07:31:16 +00:00
rts
2015-10-06 16:14:48 +00:00
*---------------------------------------
SRC.ACC10 lda SRC.ACC ACC*2-> ACC & ACCTMP
asl
sta SRC.ACC
sta SRC.ACCTMP
lda SRC.ACC+1
rol
sta SRC.ACC+1
sta SRC.ACCTMP+1
lda SRC.ACC+2
rol
sta SRC.ACC+2
sta SRC.ACCTMP+2
lda SRC.ACC+3
rol
sta SRC.ACC+3
sta SRC.ACCTMP+3
bcs .9
2015-11-20 16:31:14 +00:00
ldx #2
.1 asl SRC.ACC ACC=ACC*4
2015-10-06 16:14:48 +00:00
rol SRC.ACC+1
rol SRC.ACC+2
rol SRC.ACC+3
bcs .9
dex
bne .1
lda SRC.ACC CC from ROL SRC.ACC+3
adc SRC.ACCTMP
sta SRC.ACC
lda SRC.ACC+1
adc SRC.ACCTMP+1
sta SRC.ACC+1
lda SRC.ACC+2
adc SRC.ACCTMP+2
sta SRC.ACC+2
lda SRC.ACC+3
adc SRC.ACCTMP+3
sta SRC.ACC+3 CS if overflow
.9 rts
*---------------------------------------
MAN
SAVE /A2OSX.BUILD/BIN/DEV/ASM.S.SRC
LOAD /A2OSX.BUILD/BIN/DEV/ASM.S
2015-10-06 16:14:48 +00:00
ASM