-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGUI_Maher.asm
440 lines (397 loc) · 11 KB
/
GUI_Maher.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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
PrintChar MACRO chara
;draw X in the cursor position
mov ah,0ah
mov al,chara
mov bh,0h
mov bl,0fh
mov cx,1
int 10H
ENDM PrintChar
Set MACRO position1, position2
mov cx,0
;set cursor position
mov ah,2h
mov bh,0h
mov dh,position1
mov dl,position2
int 10h
ENDM Set
.MODEL SMALL
.Data
.CODE
MAIN PROC FAR
mov ax,@Data
mov ds,ax
mov cx,22
mov ax, 13h
int 10h ;converting to graphics mode
; Drawing the layout
; draw the outer horzontal lines
mov cx,319
Layout_horz:
mov AH,0ch ; set for drawing a pixel
mov AL,09h ; choose the blue color
mov BH,0h ; choose the page number
mov DX,0Ah ; choose the row position
INT 10H
mov DX,09ch ; choose the row position
INT 10H
dec CX
jnz Layout_horz
; draw the outer vertical lines, and the middle line
mov cx,145
mov DX,0bh ; choose the row position
Layout_vert:
mov AH,0ch ; set for drawing a pixel
mov AL,09h ; choose the blue color
mov BH,0h ; choose the page number
push cx
mov Cx,319 ; choose the column position (which is constant)
INT 10H
mov Cx,0 ; choose the column position (which is constant)
INT 10H
mov Cx,160 ; choose the column position (which is constant)
INT 10H
pop cx
inc DX
dec CX
jnz Layout_vert
;Draw the processors/////////////////////////////////////////////////////
;Draw the left processor horizontal lines
mov cx,130
processor_1_horz:
mov AH,0ch ; set for drawing a pixel
mov AL,0dh ; choose the purble color
mov BH,0h ; choose the page number
mov DX,0fh ; choose the row position
INT 10H
mov Dx,8fh ; choose the row position
INT 10H
dec CX
jnz processor_1_horz
;Draw the horizontal lines for the right processor
mov cx,130
mov bx,190
process_2_horz:
mov AH,0ch ; set for drawing a pixel
mov AL,0eh ; choose the yellow color
; push bx
; mov BH,0h ; choose the page number
; pop bx
push cx
mov cx,bx
mov DX,0fh ; choose the row position
INT 10H
mov DX,8fh ; choose the row position
INT 10H
pop cx
inc bx
dec CX
jnz process_2_horz
;Draw the vertical lines for both processors
mov cx,0
mov DX,0fh ; choose the row position
mov cx,129
Process_1_2:
mov AH,0ch ; set for drawing a pixel
mov AL,0dh ; choose the purble color
mov BH,0h ; choose the page number
push cx
mov Cx,130 ; choose the column position (which is constant)
INT 10H
mov AL,0eh ; choose the yellow color
mov Cx,190 ; choose the column position (which is constant)
INT 10H
pop cx
inc DX
dec CX
jnz process_1_2
;Draw the four registers in the two processors
; draw the left ones horizontal lines
mov bx,0
mov cx,38
mov bx,24 ; as this value will be passed to cx for columns positions
Registers_left:
mov ah,0ch
mov al,0dh ;choose purble color
; push bx ; to save the value of bx in stack
; mov bh,0h ; that the page number to be zero
; pop bx ; retrieve the value of bx
push cx ; save the value of cx in stack
mov cx,bx
mov dx,1fh
INT 10h
mov cx,bx
mov dx,2fh
INT 10h
mov cx,bx
mov dx,3fh
INT 10h
mov dx,4fh
INT 10h
mov dx,5fh
INT 10h
pop cx ; retrieve the value of cx
inc bx
dec cx
jnz Registers_left
; draw the right ones horizontal lines
mov bx,0
mov cx,38
mov bx,257 ; as this value will be passed to cx for columns positions
Registers_right:
mov ah,0ch
mov al,0eh ;choose yellow color
; push bx ; to save the value of bx in stack
; mov bh,0h ; that the page number to be zero
; pop bx ; retrieve the value of bx
push cx ; save the value of cx in stack
mov cx,bx
mov dx,1fh
INT 10h
mov cx,bx
mov dx,2fh
INT 10h
mov cx,bx
mov dx,3fh
INT 10h
mov dx,4fh
INT 10h
mov dx,5fh
INT 10h
pop cx ; retrieve the value of cx
inc bx
dec cx
jnz Registers_right
;Draw the left, right, middle vertical lines for the first four registers
mov cx,0
mov DX,1fh ; choose the row position
mov cx,65
registers_vert:
mov AH,0ch ; set for drawing a pixel
mov AL,0dh ; choose the purble color
mov BH,0h ; choose the page number
push cx
mov Cx,24 ; choose the column position (which is constant)
INT 10H
mov Cx,43 ; choose the column position (which is constant)
INT 10H
mov Cx,62 ; choose the column position (which is constant)
INT 10H
mov al,0eh ;choose yellow color
mov Cx,257 ; choose the column position (which is constant)
INT 10H
mov Cx,295 ; choose the column position (which is constant)
INT 10H
pop cx
inc DX
dec CX
jnz registers_vert
;Drawing the segment registers////////////////////
; draw the horizontal lines for the left ones
mov bx,0
mov cx,38
mov bx,70 ; as this value will be passed to cx for columns positions
segments_left:
mov ah,0ch
mov al,0dh ;choose purble color
; push bx ; to save the value of bx in stack
; mov bh,0h ; that the page number to be zero
; pop bx ; retrieve the value of bx
push cx ; save the value of cx in stack
mov cx,bx
mov dx,1fh
INT 10h
mov cx,bx
mov dx,2fh
INT 10h
mov cx,bx
mov dx,3fh
INT 10h
mov dx,4fh
INT 10h
mov dx,5fh
INT 10h
pop cx ; retrieve the value of cx
inc bx
dec cx
jnz segments_left
; draw the horizontal lines right ones
mov bx,0
mov cx,38
mov bx,211 ; as this value will be passed to cx for columns positions
segments_right:
mov ah,0ch
mov al,0eh ;choose yellow color
; push bx ; to save the value of bx in stack
; mov bh,0h ; that the page number to be zero
; pop bx ; retrieve the value of bx
push cx ; save the value of cx in stack
mov cx,bx
mov dx,1fh
INT 10h
mov cx,bx
mov dx,2fh
INT 10h
mov cx,bx
mov dx,3fh
INT 10h
mov dx,4fh
INT 10h
mov dx,5fh
INT 10h
pop cx ; retrieve the value of cx
inc bx
dec cx
jnz segments_right
;Draw the vertical lines for the segments
mov cx,0
mov DX,1fh ; choose the row position
mov cx,65
segments_vert:
mov AH,0ch ; set for drawing a pixel
mov AL,0dh ; choose the purble color
mov BH,0h ; choose the page number
push cx
mov Cx,70 ; choose the column position (which is constant)
INT 10H
mov Cx,108 ; choose the column position (which is constant)
INT 10H
mov al,0eh ;choose yellow color
mov Cx,211 ; choose the column position (which is constant)
INT 10H
mov Cx,230 ; choose the column position (which is constant)
INT 10H
mov Cx,249 ; choose the column position (which is constant)
INT 10H
pop cx
inc DX
dec CX
jnz segments_vert
; draw the boxes for users names
;draw the horizontal line for first box
mov cx,50
mov bx,38
Squares_in1:
mov AH,0ch ; set for drawing a pixel
mov AL,0dh ; choose the purble color
; push bx
; mov BH,0h ; choose the page number
; pop bx
push cx
mov cx,bx
mov DX,07fh ; choose the row position
INT 10H
pop cx
inc bx
dec CX
jnz Squares_in1
;draw the horizontal line for the second box
mov cx,50
mov bx,230
Squares_in2:
mov AH,0ch ; set for drawing a pixel
mov AL,0eh ; choose the yellow color
; push bx
; mov BH,0h ; choose the page number
; pop bx
push cx
mov cx,bx
mov DX,07fh ; choose the row position
INT 10H
pop cx
inc bx
dec CX
jnz Squares_in2
;Draw the memory
mov cx,145
mov DX,0bh ; choose the row position
memory:
mov AH,0ch ; set for drawing a pixel
mov AL,0bh ; choose the blue color
mov BH,0h ; choose the page number
push cx
mov Cx,135 ; choose the column position (which is constant)
INT 10H
mov Cx,150 ; choose the column position (which is constant)
INT 10H
mov Cx,170 ; choose the column position (which is constant)
INT 10H
mov Cx,185 ; choose the column position (which is constant)
INT 10H
pop cx
inc DX
dec CX
jnz memory
;Set the names of the registers///////////////////////////////////////////////////////////////////////////
;Disaplay the characters for the first processor
Set 4 1
PrintChar 'A'
Set 4 2
PrintChar 'X'
Set 6 1
PrintChar 'B'
Set 6 2
PrintChar 'X'
Set 8 1
PrintChar 'C'
Set 8 2
PrintChar 'X'
Set 10 1
PrintChar 'D'
Set 10 2
PrintChar 'X'
;Disaplay the characters for the second processor
Set 4 24
PrintChar 'A'
Set 4 25
PrintChar 'X'
Set 6 24
PrintChar 'B'
Set 6 25
PrintChar 'X'
Set 8 24
PrintChar 'C'
Set 8 25
PrintChar 'X'
Set 10 24
PrintChar 'D'
Set 10 25
PrintChar 'X'
;Display the characters of the segments registers of the left processor
Set 4 14
PrintChar 'S'
Set 4 15
PrintChar 'P'
Set 6 14
PrintChar 'B'
Set 6 15
PrintChar 'P'
Set 8 14
PrintChar 'S'
Set 8 15
PrintChar 'I'
Set 10 14
PrintChar 'D'
Set 10 15
PrintChar 'I'
;Display the characters of the segments registers of the right processor
Set 4 37
PrintChar 'S'
Set 4 38
PrintChar 'P'
Set 6 37
PrintChar 'B'
Set 6 38
PrintChar 'P'
Set 8 37
PrintChar 'S'
Set 8 38
PrintChar 'I'
Set 10 37
PrintChar 'D'
Set 10 38
PrintChar 'I'
;/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
MAIN ENDP
END MAIN