mirror of
https://github.com/mi57730/a2d.git
synced 2025-02-18 02:30:50 +00:00
pull macros out; some formatting
This commit is contained in:
parent
f37d997e2c
commit
f7a879c4c7
File diff suppressed because it is too large
Load Diff
133
desktop/macros.inc
Normal file
133
desktop/macros.inc
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
;;; ==================================================
|
||||||
|
;;; Generic Macros
|
||||||
|
;;; ==================================================
|
||||||
|
|
||||||
|
|
||||||
|
;;; ==================================================
|
||||||
|
;;; Calls with one parameter (address in A,X)
|
||||||
|
|
||||||
|
.macro addr_call target, addr
|
||||||
|
lda #<addr
|
||||||
|
ldx #>addr
|
||||||
|
jsr target
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
.macro addr_jump target, addr
|
||||||
|
lda #<addr
|
||||||
|
ldx #>addr
|
||||||
|
jmp target
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
;;; ==================================================
|
||||||
|
;;; Calls with two paramters (call # in y, address in A,X)
|
||||||
|
;;; (various output orders to match original binary)
|
||||||
|
|
||||||
|
.macro axy_call target, yparam, addr
|
||||||
|
lda #<addr
|
||||||
|
ldx #>addr
|
||||||
|
ldy #yparam
|
||||||
|
jsr target
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
.macro yax_call target, yparam, addr
|
||||||
|
ldy #yparam
|
||||||
|
lda #<addr
|
||||||
|
ldx #>addr
|
||||||
|
jsr target
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
.macro yxa_call target, yparam, addr
|
||||||
|
ldy #yparam
|
||||||
|
ldx #>addr
|
||||||
|
lda #<addr
|
||||||
|
jsr target
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
.macro yxa_jump target, yparam, addr
|
||||||
|
ldy #yparam
|
||||||
|
ldx #>addr
|
||||||
|
lda #<addr
|
||||||
|
jmp target
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
;;; ==================================================
|
||||||
|
;;; 16-bit pseudo-ops
|
||||||
|
|
||||||
|
;;; Load A,X (immediate or absolute)
|
||||||
|
;;; ldax $1234
|
||||||
|
;;; ldax #$1234
|
||||||
|
.macro ldax arg
|
||||||
|
.if (.match (.mid (0, 1, {arg}), #))
|
||||||
|
lda #<(.right (.tcount ({arg})-1, {arg}))
|
||||||
|
ldx #>(.right (.tcount ({arg})-1, {arg}))
|
||||||
|
.else
|
||||||
|
lda arg
|
||||||
|
ldx arg+1
|
||||||
|
.endif
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
;;; Store A,X (absolute)
|
||||||
|
;;; stax $1234
|
||||||
|
.macro stax arg
|
||||||
|
sta arg
|
||||||
|
stx arg+1
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
;;; Add arg1 (absolute) to arg2 (immediate or absolute), store to arg3
|
||||||
|
;;; add16 $1111, $2222, $3333
|
||||||
|
;;; add16 $1111, #$2222, $3333
|
||||||
|
.macro add16 aa, bb, rr
|
||||||
|
.if (.match (.mid (0, 1, {bb}), #))
|
||||||
|
lda aa
|
||||||
|
clc
|
||||||
|
adc #<(.right (.tcount ({bb})-1, {bb}))
|
||||||
|
sta rr
|
||||||
|
lda aa+1
|
||||||
|
adc #>(.right (.tcount ({bb})-1, {bb}))
|
||||||
|
sta rr+1
|
||||||
|
.else
|
||||||
|
lda aa
|
||||||
|
clc
|
||||||
|
adc bb
|
||||||
|
sta rr
|
||||||
|
lda aa+1
|
||||||
|
adc bb+1
|
||||||
|
sta rr+1
|
||||||
|
.endif
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
;;; Add arg1 (absolute) to arg2 (8-bit absolute), store to arg3
|
||||||
|
;;; add16_8 $1111, $22, $3333
|
||||||
|
;;; add16_8 $1111, #$22, $3333
|
||||||
|
.macro add16_8 aa, bb, rr
|
||||||
|
lda aa
|
||||||
|
clc
|
||||||
|
adc bb
|
||||||
|
sta rr
|
||||||
|
lda aa+1
|
||||||
|
adc #0
|
||||||
|
sta rr+1
|
||||||
|
.endmacro
|
||||||
|
|
||||||
|
;;; Subtract arg2 (immediate or absolute) from arg1, store to arg3
|
||||||
|
;;; sub16 $1111, $2222, $3333
|
||||||
|
;;; sub16 $1111, #$2222, $3333
|
||||||
|
.macro sub16 aa, bb, rr
|
||||||
|
.if (.match (.mid (0, 1, {bb}), #))
|
||||||
|
lda aa
|
||||||
|
sec
|
||||||
|
sbc #<(.right (.tcount ({bb})-1, {bb}))
|
||||||
|
sta rr
|
||||||
|
lda aa+1
|
||||||
|
sbc #>(.right (.tcount ({bb})-1, {bb}))
|
||||||
|
sta rr+1
|
||||||
|
.else
|
||||||
|
lda aa
|
||||||
|
sec
|
||||||
|
sbc bb
|
||||||
|
sta rr
|
||||||
|
lda aa+1
|
||||||
|
sbc bb+1
|
||||||
|
sta rr+1
|
||||||
|
.endif
|
||||||
|
.endmacro
|
Loading…
x
Reference in New Issue
Block a user