forked from Konamiman/Nextor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacros.inc
268 lines (231 loc) · 3.66 KB
/
macros.inc
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
.xlist
;
FALSE equ 0
TRUE equ NOT FALSE
?????? equ 0
;
;
;
;Macros for generating IXh/IXl/IYh/IYl instructions.
;These instructions are generated by
;appending a DDh byte to instructions referring to H, to access IXh,
;or to instructions referring to L, to access IXl.
;For IY, FDh is used instead of DDh.
ld_iyh_a macro
db 0FDh
ld h,a
endm
ld_iyh_e macro
db 0FDh
ld h,e
endm
ld_iyl_a macro
db 0FDh
ld l,a
endm
ld_iyh_b macro
db 0FDh
ld h,b
endm
ld_iyh_c macro
db 0FDh
ld h,c
endm
ld_a_iyh macro
db 0FDh
ld a,h
endm
ld_a_iyl macro
db 0FDh
ld a,l
endm
ld_c_ixh macro
db 0DDh
ld c,h
endm
ld_ixh_a macro
db 0DDh
ld h,a
endm
ld_a_ixh macro
db 0DDh
ld a,h
endm
ld_a_ixl macro
db 0DDh
ld a,l
endm
ld_a_iyh macro
db 0FDh
ld a,h
endm
or_ixl macro
db 0DDh
or l
endm
or_iyl macro
db 0FDh
or l
endm
cp_ixl macro
db 0DDh
cp l
endm
cp_ixh macro
db 0DDh
cp h
endm
cp_iyl macro
db 0FDh
cp l
endm
cp_iyh macro
db 0FDh
cp h
endm
const macro name,value
name equ (value)
public name
endm
;
;
;
warn macro text
if1
.printx % text
endif
endm
;
;
;
error macro text
if1
.printx % text
endif
endm
;
;
;
pr_dec macro msg1,value,msg2
warn <msg1 value msg2>
endm
;
;
pr_hex macro msg1,value,msg2
warn <msg1 value!h msg2>
endm
;
;
code macro instr,arg
.8080
db (instr arg)
.z80
endm
;
;
;-----------------------------------------------------------------------------
;
OFFSET equ 4100h
PHASED defl FALSE
;
rammod macro
PHASED defl TRUE
.phase $-OFFSET
endm
;
;
start:
;
finish macro name
if PHASED
.dephase
endif
if1
pr_dec <Size of module "&name" is>,%($-start),<bytes>
endif
endm
;
;
;--- The "proc" macro is used to define a label that is invoked
; at RAM in page 0 (when PHASED) or at ROM bank 4 (when not PHASED).
proc macro name ;;Macro for declaring a public
if PHASED
name&: ;; label to be called.
.dephase
?&name&::
.phase $-OFFSET
else
name&: ;;For local call
?&name&:: ;;For external call
endif
endm
;
;
;
pcall macro cc,name ;;Macro for calling an external
;; routine.
ifb <name>
call ?&cc&##-OFFSET ;;Unconditional CALL.
else
call cc,?&name&##-OFFSET ;;Conditional CALL.
endif
endm
;
;
;
; STROUT implementation with the ESC-Y bug corrected.
; It is declared as as macro because it is defined
; twince in the kernel (bdos.mac, char.mac)
; and once more in MSXDOS2.SYS.
;
; OUTDIR is the routine used to print a character.
; RETDIR is the routine jumped to at end. If 0, ret is generated instead.
; LOADCE: if specified, E and C registers are loaded prior to calling CONOUT.
do_strout macro OUTDIR,RETDIR,LOADCE
local stro_init
local STROU2
local ST10
stro_init:
LD A,(DE)
INC DE
cp ESC
jr nz,STROU2
call ST10 ;Print 'ESC'
ld a,(DE)
inc de
cp 'Y'
jr nz,STROU2
call ST10 ;Print 'Y'
ld a,(DE)
inc de
call ST10 ;Print X coordinate
ld a,(DE)
inc de
call ST10 ;Print Y coordinate
jr stro_init
STROU2:
CP '$'
ifidn <RETDIR>,<0>
RET Z
else
JP Z,&RETDIR&
endif
call ST10
JR stro_init
ST10: PUSH DE
ifnb <LOADCE>
LD E,A
LD C,_CONOUT##
endif
CALL &OUTDIR&
POP DE
RET
endm
djpnz macro address
dec b
jp nz,address
endm
;------------------------------------------------------------------------------
;
.list
;