-
Notifications
You must be signed in to change notification settings - Fork 5
/
io.asm
378 lines (335 loc) · 6.23 KB
/
io.asm
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
; This file is update for io.asm library included in the package IDE
; RadASM for KubSU students. Main page of project
; https://github.com/KubSU/SIOMASM/
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
; For details see the MIT license.
;**********************************************************************
; LIBRARY NAME : IO
; DESCRIPTION : Simple Input-Output library for MASM.
; ORGANIZATION : Êðàñíîäàð 2014 ÊóáÃÓ ÔÊÒèÏÌ (Krasnodar 2014 KubSU)
; AUTHORS :
;
; Ñîçäàòåëè / The creators
;
; Êèðèé Ãåîðãèé (Kiriy Georgiy)
;
; Õóðàìøèí Ðàøèä (Huramshin Rashid)
;
; Èñïðàâëåíèå îøèáîê / Error correction
;
; Çûðÿíîâ Ìàêñèì (Zyryanov Maxim)
;
;**********************************************************************
.xlist
option casemap :none
include \masm32\include\masm32rt.inc
includelib \masm32\lib\iolib.lib
_outstr PROTO
_outint PROTO
_inint PROTO
_inch PROTO
system PROTO c :dword
.data
_temp db ?
.code
; SERVICE MACRO
same macro name,variants,ans
ans=0
IRP v,<variants>
IFIDN <name>,<v>
ans=1
EXITM
ENDIF
ENDM
endm
;======================================================================
;======================= STRING AND CHAR MACRO ========================
;======================================================================
; PRINT
print macro Name:VARARG
LOCAL quot
LOCAL reg?
LOCAL temp
push edx
push ecx
push eax
IFDIF <Name>,<NULL>
IFNB <Name>
quot SUBSTR <Name>,1,1
IFIDN quot,<"> ;"
printc Name
ELSE
same Name,<al,AL,Al,aL,ah,AH,Ah,aH,bl,BL,Bl,bL,bh,BH,Bh,bH,cl,CL,Cl,cL,ch,CH,Ch,cH,dl,DL,Dl,dL,dh,DH,Dh,dH>, reg?
IF reg?
.data
temp db ?, 0
.code
mov temp,Name
lea edx, temp
call _outstr
ELSE
lea edx, Name
call _outstr
ENDIF
ENDIF
ELSE
call wait_key
ENDIF
ENDIF
pop eax
pop ecx
pop edx
endm
; PRINT LINE
println macro Name
print Name
print "\n"
endm
; READ
read macro Name
LOCAL bool
same <Name>,<al,AL,Al,aL>, bool
IF bool
push ecx
push edx
getkey
mov Name, al
pop edx
pop ecx
ELSE
same <Name>,<ah,AH,Ah,aH>, bool
IF bool
push ecx
push edx
xchg ah, al
getkey
xchg ah, al
pop edx
pop ecx
ELSE
same <Name>,<bl,BL,Bl,bL,bh,BH,Bh,bH>, bool
IF bool
push ecx
push edx
push eax
getkey
mov Name, al
pop eax
pop edx
pop ecx
ELSE
same <Name>,<cl,CL,Cl,cL,ch,CH,Ch,cH,dl,DL,Dl,dL,dh,DH,Dh,dH>, bool
IF bool
push eax
push edx
push ecx
getkey
pop ecx
pop edx
mov Name, al
pop eax
ELSE
push ecx
push edx
push eax
getkey
mov Name, al
pop eax
pop edx
pop ecx
ENDIF
ENDIF
ENDIF
ENDIF
print Name
endm
; READ LINE
readln macro Name, text
read Name, text
print "\n"
endm
;======================================================================
;============================ NUMBER MACRO ============================
;======================================================================
; OUTINT
outint macro Name
IF issize(Name, 4)
outint32 Name
ELSE
push eax
movsx eax, Name
outint32 eax
pop eax
ENDIF
endm
; ININT
inint macro Name
IF issize(Name, 1)
inint8 Name
ELSE
IF issize(Name, 2)
inint16 Name
ELSE
inint32 Name
ENDIF
ENDIF
endm
; OUTINT 32 BIT
outint32 macro num, digits := <0>
push eax
push ecx
push edx
push num
pop eax
push digits
pop ecx
call _outint
pop edx
pop ecx
pop eax
endm
; OUTINT 16 BIT
outint16 macro num, digits := <0>
push eax
push ebx
mov ebx, eax
mov eax, 0
mov ax, bx
pop ebx
movsx eax, num
outint32 eax, digits
pop eax
endm
; OUTINT 8 BIT
outint8 macro num, digits := <0>
push eax
push ebx
mov ebx, eax
mov eax, 0
mov ax, bx
pop ebx
movsx eax, num
outint32 eax, digits
pop eax
endm
; ININT 32 BIT
inint32 macro x
LOCAL regeax?
same <x>,<eax,eAX,eAx,eaX,Eax,EAX,EAx,EaX>,regeax?
IF regeax?
CALL _inint
ELSE
PUSH EAX
CALL _inint
MOV x, EAX
POP EAX
ENDIF
endm
; ININT 16 BIT
inint16 macro x
LOCAL regeax?
same <x>,<ax,AX,Ax,aX>,regeax?
IF regeax?
push ebx
push eax
CALL _inint
mov ebx, eax
pop eax
mov ax, bx
pop ebx
ELSE
PUSH EAX
CALL _inint
MOV x, ax
POP EAX
ENDIF
endm
; ININT 8 BIT
inint8 macro x
LOCAL regax?
same <x>,<ah,AH,Ah,aH>,regax?
IF regax?
push ebx
push eax
CALL _inint
mov ebx, eax
pop eax
mov ah, bl
pop ebx
ELSE
same <x>,<al,AL,Al,aL>,regax?
IF regax?
push ebx
push eax
CALL _inint
mov ebx, eax
pop eax
mov al, bl
pop ebx
ELSE
PUSH eax
CALL _inint
MOV x,AL
POP eax
ENDIF
ENDIF
endm
;======================================================================
;===================== OLD MACRO (for compatibility) ==================
;======================================================================
; INCH
inch macro x
read x
endm
; OUTCH
outch macro x
print x
endm
; NEWLINE
newline macro
print "\n"
endm
; INKEY (macros.asm copy)
inkey macro string
pusha
IFDIF <string>,<NULL>
IFNB <string>
print string
ELSE
print "Press any key to continue."
ENDIF
ENDIF
call wait_key
print chr$(13,10)
popa
endm
; OUTSTR
outstr macro string
push edx
push eax
push ecx
mov edx, string ; lea for using without offset
call _outstr
pop ecx
pop eax
pop edx
endm
; OUTSTR LINE
outstrln macro string
push edx
push eax
push ecx
mov edx, string ; lea for using without offset
call _outstr
printc "\n"
pop ecx
pop eax
pop edx
endm
.list