-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMPPA.ASM
324 lines (282 loc) · 3.87 KB
/
CMPPA.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
IDEAL
;
; プリンタ用紙節約プログラムCMPP
; アセンブラ部
; By Ken/ichiro(OPA)
;
ORGINAL_SEG EQU -1
INCLUDE "STDIO.ASH"
INCLUDE "CONDX.ASH"
GROUP CGROUP TEXT
PUBLIC prnout_P2_
PUBLIC prnout_E2_
PUBLIC prnout_E4_
EXTRN bufprn_:BYTE
EXTRN _pputc_:NEAR
SEGMENT TEXT BYTE PUBLIC 'CODE'
ASSUME CS:TEXT
PROC prnout_P2_ NEAR
push cx
push dx
push si
push di
mov cx,ax
and cl,7
shr ax,3
mov si,48
mul si
mov si,ax
add si,aof bufprn_
mov dh,080h
shr dh,cl
mov cx,bx
mov [cs:dsbuf],ds
mov ax,seg bufprn_
mov [cs:xsbuf],ax
mov ds,ax
test cx,cx
@@l:
jz @@q
mov bx,si
xor di,di
@FOR AL,1,8
shr dl,1
test [di+bx],dh
@IF NZ
or dl,80h
@ENDIF
inc di
@NEXT
mov [cs:buf0],dl
@FOR AL,1,8
shr dl,1
test [di+bx],dh
@IF NZ
or dl,80h
@ENDIF
inc di
@NEXT
mov [cs:buf1],dl
@FOR AL,1,8
shr dl,1
test [di+bx],dh
@IF NZ
or dl,80h
@ENDIF
inc di
@NEXT
mov [cs:buf2],dl
mov ds,[cs:dsbuf]
mov al,[cs:buf0]
call _pputc_
mov al,[cs:buf1]
call _pputc_
mov al,[cs:buf2]
call _pputc_
mov ds,[cs:xsbuf]
shr dh,1
@IF C
mov dh,080h
add si,48
@ENDIF
dec cx
jmp @@l
@@q:
mov ds,[cs:dsbuf]
pop di
pop si
pop dx
pop cx
RET
ENDP
PROC prnout_E2_ NEAR
push cx
push dx
push si
push di
mov cx,ax
and cl,7
shr ax,3
mov si,48
mul si
mov si,ax
add si,aof bufprn_
mov dh,080h
shr dh,cl
mov cx,bx
mov [cs:dsbuf],ds
mov ax,seg bufprn_
mov [cs:xsbuf],ax
mov ds,ax
test cx,cx
@@l:
jz @@q
mov bx,si
xor di,di
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf0],dl
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf1],dl
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf2],dl
mov ds,[cs:dsbuf]
mov al,[cs:buf0]
call _pputc_
mov al,[cs:buf1]
call _pputc_
mov al,[cs:buf2]
call _pputc_
mov ds,[cs:xsbuf]
shr dh,1
@IF C
mov dh,080h
add si,48
@ENDIF
dec cx
jmp @@l
@@q:
mov ds,[cs:dsbuf]
pop di
pop si
pop dx
pop cx
RET
ENDP
PROC prnout_E4_ NEAR
push cx
push dx
push si
push di
mov cx,ax
and cl,7
shr ax,3
mov si,48
mul si
mov si,ax
add si,aof bufprn_
mov dh,080h
shr dh,cl
mov cx,bx
mov [cs:dsbuf],ds
mov ax,seg bufprn_
mov [cs:xsbuf],ax
mov ds,ax
test cx,cx
@@l:
jz @@q
mov bx,si
xor di,di
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf0],dl
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf1],dl
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf2],dl
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf3],dl
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf4],dl
@FOR AL,1,8
shl dl,1
test [di+bx],dh
@IF NZ
inc dl
@ENDIF
inc di
@NEXT
mov [cs:buf5],dl
mov ds,[cs:dsbuf]
mov al,[cs:buf0]
call _pputc_
mov al,[cs:buf1]
call _pputc_
mov al,[cs:buf2]
call _pputc_
mov al,[cs:buf3]
call _pputc_
mov al,[cs:buf4]
call _pputc_
mov al,[cs:buf5]
call _pputc_
mov ds,[cs:xsbuf]
shr dh,1
@IF C
mov dh,080h
add si,48
@ENDIF
dec cx
jmp @@l
@@q:
mov ds,[cs:dsbuf]
pop di
pop si
pop dx
pop cx
RET
ENDP
dsbuf dw ?
xsbuf dw ?
buf0 db ?
buf1 db ?
buf2 db ?
buf3 db ?
buf4 db ?
buf5 db ?
ENDS
END