-
Notifications
You must be signed in to change notification settings - Fork 85
/
macros.src
168 lines (167 loc) · 1.83 KB
/
macros.src
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
.subttl 16 bit macro definitions
;
ram .macro %a,%b
.ifdef %a
.messg multiple definitions -> curram
.else
%a = curram
.ifb <%b>
curram = curram+1
.else
curram = curram+%b
.endif
.endif
.endm
zpage .macro %a,%b
.ifdef %a
.messg multiple definitions -> curram
.else
%a = curzpg
.ifb <%b>
curzpg = curzpg+1
.else
curzpg = curzpg+%b
.endif
.ifgt curzpg-$100
ERROR- too many zero page variables.....
.endif
.endif
.endm
;
;
; double precision macros
;
;
ldd .macro %a
lda %a ; x,a <= %a
ldx %a+1
.endm
;
std .macro %a
sta %a ; %a <= x,a
stx %a+1
.endm
;
cpd .macro %a
mactmp = %a
cpx %a+1 ; compare x,a with %a
.ifn >mactmp
bne *+5
.else
bne *+4
.endif
cmp %a
.endm
;
;
cpi .macro %a
cpx #>%a ; compare x,a with #%a
bne *+4
cmp #<%a
.endm
;
ldi .macro %a
lda #<%a ; x,a <= #%a
ldx #>%a
.endm
;
;
incd .macro %a
mactmp = %a
inc %a ; inc double precision %a
.ifn >mactmp
bne *+5
.else
bne *+4
.endif
inc %a+1
.endm
;
decd .macro %a
mactmp = %a
pha ; dec double precision %a
lda %a
.ifn >mactmp
bne *+5
.else
bne *+4
.endif
dec %a+1
dec %a
pla
.endm
;
add .macro %a
cld ; add %a to x,a
clc ; ( carry is only good condition code )
adc %a
pha
txa
adc %a+1
tax
pla
.endm
;
sbd .macro %a
cld ; sub %a from x,a
sec ; ( carry is only good condition code )
sbc %a
pha
txa
sbc %a+1
tax
pla
.endm
;
cmpdr .macro %a,%b,%r ; double compare %a to %b using .%r
ld%r %a+1
cp%r %b+1
mactmp = %a
.ifn >mactmp
mactmp = %b
.ifn >mactmp
bne *+2+3+3
.else
bne *+2+3+2
.endif
.else
mactmp = %b
.ifn >mactmp
bne *+2+2+3
.else
bne *+2+2+2
.endif
.endif
ld%r %a
cp%r %b
.endm
;
cpa .macro %a
cmp %a
.endm
;
phd .macro
pha
txa
pha
.endm
;
pld .macro
pla
tax
pla
.endm
;
adad .macro %a
clc
adc %a
sta %a
mactmp = %a
.ifn >mactmp
bcc *+5
.else
bcc *+4
.endif
inc %a+1
.endm
;