forked from Konamiman/Nextor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacros.inc
280 lines (241 loc) · 4.2 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
269
270
271
272
273
274
275
276
277
278
279
280
.xlist
;
FALSE equ 0
TRUE equ NOT FALSE
?????? equ 0
;
;
;
const macro name,value
name equ (value)
public name
endm
;
;
;
warn macro text
if1
.printx % text
endif
endm
;
;
;
error macro text
if1
.error 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
_code_ defl 0
ifidn <instr>,<RET>
_code_ defl 0C9h
endif
ifidn <instr>,<ret>
_code_ defl 0C9h
endif
ifidn <instr>,<CPI>
_code_ defl 0FEh
endif
ifidn <instr>,<cpi>
_code_ defl 0FEh
endif
ifidn <instr>,<sta>
_code_ defl 032h
endif
ifidn <instr>,<call>
_code_ defl 0CDh
endif
ifidn <instr>,<CALL>
_code_ defl 0CDh
endif
ifidn <instr>,<jz>
_code_ defl 0CAh
endif
ifidn <instr>,<ori>
_code_ defl 0F6h
endif
ifidn <instr>,<CNZ>
_code_ defl 0C4h
endif
ifidn <instr>,<JMP>
_code_ defl 0C3h
endif
ifidn <instr>,<push>
ifidn <arg>,<psw>
_code_ defl 0F5h
endif
endif
ifidn <instr>,<MVI>
ifidn <arg>,<A>
_code_ defl 3Eh
endif
ifidn <arg>,<M>
_code_ defl 36h
endif
ifidn <arg>,<C>
_code_ defl 0Eh
endif
endif
ifidn <instr>,<mvi>
ifidn <arg>,<a>
_code_ defl 3Eh
endif
ifidn <arg>,<b>
_code_ defl 06h
endif
ifidn <arg>,<m>
_code_ defl 36h
endif
ifidn <arg>,<c>
_code_ defl 0Eh
endif
endif
ifidn <instr>,<LXI>
ifidn <arg>,<H>
_code_ defl 21h
endif
ifidn <arg>,<SP>
_code_ defl 31h
endif
ifidn <arg>,<HL>
_code_ defl 21h
endif
endif
ifidn <instr>,<lxi>
ifidn <arg>,<h>
_code_ defl 21h
endif
ifidn <arg>,<hl>
_code_ defl 21h
endif
endif
if _code_ eq 0
if1
.printx Undefined CODE arguments!!!!!!!!!!!!!!!!!!!!!!!!!!!
.printx instr,arg
endif
endif
db _code_
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
;