-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathmacros.src
225 lines (223 loc) · 2.88 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
.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
cpx %a+1 ; compare x,a with %a
.ifn >%a
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
mactmp = %a
lda #<mactmp ; x,a <= #%a
ldx #>mactmp
.endm
;
;
incd .macro %a
inc %a ; inc double precision %a
.ifn >%a
bne *+5
.else
bne *+4
.endif
inc %a+1
.endm
;
decd .macro %a
pha ; dec double precision %a
lda %a
.ifn >%a
bne *+5
.else
bne *+4
.endif
dec %a+1
dec %a
pla
.endm
;
add .macro %a
clc
addc %a
.endm
;
addc .macro %a
adc %a
pha
txa
adc %a+1
tax
pla
.endm
;
addi .macro %a
mactmp = %a
clc
adc #<mactmp
pha
txa
adc #>mactmp
tax
pla
.endm
;
sbd .macro %a
sec
sbdc %a
.endm
;
sbdc .macro %a
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
.ifn >%a
.ifn >%b
bne *+2+3+3
.else
bne *+2+3+2
.endif
.else
.ifn >%b
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
.ifn >%a
bcc *+5
.else
bcc *+4
.endif
inc %a+1
.endm
;
zchk .macro %a
lda %a
ora %a+1
.endm
;
;
; entry name,value
; creates a symbol whose name is equal to name_*
; where * is a single char rangeing from 0-9,a-z.
; the value of the symbol is defined in the second arg.
;
; table name,directive,modifier
;
; creates n lines of code where n is the number of times
; entry was called.
; name is the name of the table symbols used in entry.
; directive is the directive for the line ( include the . )
; modifier optionally may contain ">" or other chars to
; to be immediately prepended to symbol name.
;
;
entry .macro %table,%value
flag = 0
.irpc %c,0123456789abcdefghijklomp
.ife flag
.ifndef %table_%c
%table_%c = %value
flag = 1
.endif
.endif
.endr
.ife flag
*** ERROR *** entry macro overflow %table
.endif
.endm
;
table .macro %table
.irpc %c,0123456789abcdefghijklmnop
.ifdef %table_%c
.byte <%table_%c
.endif
.endr
.endm
;