-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.asm
1490 lines (1238 loc) · 15.7 KB
/
test.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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[org 0x0100]
jmp start
var:db '-'
x1:db 0
x2:db 0
y1:db 59
y2:db 24
topleft:dw 0
topright:dw 0
bottomleft:dw 0
bottomright:dw 0
mess1:db 'SCORE:'
mess2:db 'TIME'
mess3:db 'SHAPE'
mess4: db 'G A M E O V E R!'
score:dw 0
time: dw 0
min: dw 0
sec: dw 0
Tcounts: dw 0
oldtimer:dd 0
oldksr: dd 0
CurrShapeType: dw 1
CurrShape_Address: dw 212
Offset_Address:dw 0
clrscr: push es
push ax
push di
mov ax, 0xb800
mov es, ax ; point es to video base
mov di, 0 ; point di to top left column
nextloc: mov word [es:di], 0x0720 ; clear next char on screen
add di, 2 ; move to next screen location
cmp di, 4000 ; has the whole screen cleared
jne nextloc ; if no clear next position
pop di
pop ax
pop es
ret
coordinate:
push bp
mov bp,sp
push ax
push bx
mov al, 80
mul byte [bp+6]
add ax, [bp+8]
shl ax, 1
mov bx,[bp+4]
mov [bx],ax
pop bx
pop ax
pop bp
ret 6
rectangle:
push bp
mov bp,sp
push ax
push bx
push cx
push dx
push di
push si
push es
mov ax, 0xb800 ; load video base in ax
mov es, ax
mov di,[bp+10]
mov ah,0x78
mov al,[bp+12]
mov bx,[bp+8]
mov dx,ax
lp:
mov [es:di],ax
add di,2
cmp di,bx
jna lp
mov di,[bp+6]
mov bx,[bp+4]
lp2:
mov [es:di],ax
add di,2
cmp di,bx
jna lp2
mov di,[bp+10]
mov bx,[bp+6]
add di,160
mov si,di
add si,2
mov dl,32
mov al,124
lp3:
mov [es:di],dx
mov [es:si],ax
add di,160
add si,160
cmp di,bx
jc lp3
mov di,[bp+8]
mov bx,[bp+4]
add di,160
mov si,di
sub si,2
lp4:
mov [es:di],dx
mov [es:si],ax
add di,160
add si,160
cmp di,bx
jc lp4
pop es
pop si
pop di
pop dx
pop cx
pop bx
pop ax
pop bp
ret 10
classPrint:
PrintNum:
push bp
mov bp,sp
push bx
push cx
push ax
push si
push dx
push di
mov ax,0xb800
mov es,ax
mov ax,[bp+4]
mov ah,0
mov bl,10
div bl
add ah,30h
add al,30h
mov dh,3Eh
mov dl,al
mov word[es:di],dx
add di,2
mov dl,ah
mov word[es:di],dx
pop di
pop dx
pop si
pop ax
pop cx
pop bx
pop bp
ret 2
printMessage:
push bp
mov bp,sp
push ax
push bx
push cx
push di
push si
push es
mov ax, 0xb800
mov es, ax
mov ax,0
mov cx,[bp+4]
mov bx,[bp+6]
mov ax,[bp+10]
mov ah,al
mov al,0
mov si,0
mov di,[bp+8]
printlp:
mov al,byte[bx+si]
mov [es:di],ax
add di,2
add si,1
loop printlp
pop es
pop si
pop di
pop cx
pop bx
pop ax
pop bp
ret 8
DrawBorder:
mov ax,0
mov al,byte[x1]
push ax
mov al,byte[x2]
push ax
push topleft
call coordinate
mov al,byte[y1]
push ax
mov al,byte[x2]
push ax
push topright
call coordinate
mov al,byte[x1]
push ax
mov al,byte[y2]
push ax
push bottomleft
call coordinate
mov al,byte[y1]
push ax
mov al,byte[y2]
push ax
push bottomright
call coordinate
mov al,byte[var]
push ax
push word[topleft]
push word[topright]
push word[bottomleft]
push word[bottomright]
call rectangle
ret
ScoreBoard:
mov ax, 0xb800
mov es, ax
mov di,[topright]
add di,2
mov bx,di
mov cx,80
shr bx,1
sub cx,bx
mov bx,cx
mov dx,cx
shl dx,1
sclp:
mov word [es:di], 0x03720
add di, 2
loop sclp
cmp di,4000
je exit
add di,160
sub di,dx
mov cx,bx
jmp sclp
exit:
ret
DrawScoreBoard:
push di
push ax
mov ax,0
mov ax,0x3E
push ax
mov ax,610
push ax
push mess1
mov ax,6
push ax
call printMessage
mov di,624
mov ax,[score]
push ax;
call PrintNum
mov ax,0x3E
push ax
mov ax,930
push ax
push mess2
mov ax,4
push ax
call printMessage
mov di,944
mov ax,[time]
push ax;
call PrintNum
mov ax,0x3E
push ax
mov ax,1416
push ax
push mess3
mov ax,5
push ax
call printMessage
pop ax
pop di
ret
DrawCurrShape:
push bp
mov bp,sp
push ax
mov ax,[bp+4]
cmp word[CurrShapeType],1
je PrintI
cmp word[CurrShapeType],2
je PrintL
cmp word[CurrShapeType],3
je PrintT
cmp word[CurrShapeType],4
je PrintS
jmp return
PrintI:
push ax
push word[CurrShape_Address]
call Ishape
jmp return
PrintL:
push ax
push word[CurrShape_Address]
call LShape
jmp return
PrintT:
push ax
push word[CurrShape_Address]
call TShape
jmp return
PrintS:
push ax
push word[CurrShape_Address]
call Sshape
return:
pop ax
pop bp
ret 2
shape:
Ishape:
push bp
mov bp,sp
push ax
push di
cmp word[bp+6],0;O means print blank
je draw_BG_Ishape
mov ax,0x4820;red
push ax
mov di,[bp+4]
push di
call sqaure
mov ax,0x2820;green
push ax
add di,320
push di
call sqaure
mov ax,0x1820;blue
push ax
add di,320
push di
call sqaure
mov ax,0x6820
push ax
add di,320
push di
call sqaure
jmp end_Ishape
draw_BG_Ishape:
mov ax,0x0720;red
push ax
mov di,[bp+4]
push di
call sqaure
push ax
add di,320
push di
call sqaure
push ax
add di,320
push di
call sqaure
push ax
add di,320
push di
call sqaure
end_Ishape:
pop di
pop ax
pop bp
ret 4
LShape:
push bp
mov bp,sp
push ax
push di
cmp word[bp+6],0;O means print blank
je draw_BG_Lshape
mov ax,0x4820;red
push ax
mov di,[bp+4]
push di
call sqaure
mov ax,0x2820;green
push ax
add di,320
push di
call sqaure
mov ax,0x1820;blue
push ax
add di,320
push di
call sqaure
mov ax,0x6820
push ax
sub di,8
push di
call sqaure
jmp end_Lshape
draw_BG_Lshape:
mov ax,0x0720;black
push ax
mov di,[bp+4]
push di
call sqaure
mov ax,0x0720;black
push ax
add di,320
push di
call sqaure
mov ax,0x0720;black
push ax
add di,320
push di
call sqaure
mov ax,0x0720
push ax
sub di,8
push di
call sqaure
end_Lshape:
pop di
pop ax
pop bp
ret 4
TShape:
push bp
mov bp,sp
push ax
push di
cmp word[bp+6],0;O means print blank
je draw_BG_Tshape
mov ax,0x4820
push ax
mov di,[bp+4]
push di
call sqaure
mov ax,0x2820;green
push ax
add di,8
push di
call sqaure
mov ax,0x1820;blue
push ax
add di,8
push di
call sqaure
mov ax,0x6820
push ax
add di,312
push di
call sqaure
jmp end_Tshape
draw_BG_Tshape:
mov ax,0x0720
push ax
mov di,[bp+4]
push di
call sqaure
mov ax,0x0720;
push ax
add di,8
push di
call sqaure
mov ax,0x0720;
push ax
add di,8
push di
call sqaure
mov ax,0x0720
push ax
add di,312
push di
call sqaure
end_Tshape:
pop di
pop ax
pop bp
ret 4
sqaure:;first paraemeter is attribute byte(color), second is di address
push bp
mov bp,sp
push ax
push di
push si
push es
mov di,[bp+4]
mov ax, 0xb800
mov es, ax
mov ax,[bp+6]
mov [es:di],ax
add di,2
mov [es:di],ax
add di,2
mov [es:di],ax
add di,2
mov [es:di],ax
add di,160
mov [es:di],ax
sub di,2
mov [es:di],ax
sub di,2
mov [es:di],ax
sub di,2
mov [es:di],ax
pop es
pop si
pop di
pop ax
pop bp
ret 4
Sshape:
push bp
mov bp,sp
push ax
push di
cmp word[bp+6],0
je draw_BG_Sshape
mov ax,0x4820;red
push ax
mov di,[bp+4]
push di
call sqaure
mov ax,0x2820;green
push ax
add di,320
push di
call sqaure
mov ax,0x1820;blue
push ax
mov di,[bp+4]
add di,8
push di
call sqaure
mov ax,0x6820
push ax
add di,320
push di
call sqaure
jmp end_BG_Sshape
draw_BG_Sshape:
mov ax,0x0720;red
push ax
mov di,[bp+4]
push di
call sqaure
mov ax,0x0720;green
push ax
add di,320
push di
call sqaure
mov ax,0x0720;blue
push ax
mov di,[bp+4]
add di,8
push di
call sqaure
mov ax,0x0720
push ax
add di,320
push di
call sqaure
end_BG_Sshape:
pop di
pop ax
pop bp
ret 4
DrawEndScreen:
push ax
push di
call clrscr
mov ax,0x07
push ax
mov ax,1660
push ax
push mess4
mov ax,17
push ax
call printMessage
mov ax,0x07
push ax
mov ax,1986
push ax
push mess1
mov ax,6
push ax
call printMessage
mov di,2000
mov ax,[score]
push ax;
call PrintNum
pop di
pop ax
ret
delay:
mov cx, 0xffff
delaying:
loop delaying
ret
KeyInt:
push ax
mov word[Offset_Address],0
in al,0x60
cmp al,0x1e
jne ISright
sub word[Offset_Address],8
jmp nomatch
ISright:
cmp al,0x20
jne nomatch
add word[Offset_Address],8
nomatch:
pop ax
jmp far [cs:oldksr]
CheckSqaureCollision:
push ax
push bx
push cx
push es
mov ax,0xb800
push ax
pop es
mov dx,0
mov ax,0x0720
mov cx,2
mov bx,0
Detection:
mov cx,4
repe scasw
cmp cx,0
jne exitSqaureCollsion
mov dx,1
exitSqaureCollsion:
pop es
pop cx
pop bx
pop ax
ret
CheckLeftRightCollision:
push ax
push cx
push es
mov ax,0xb800
push ax
pop es
mov ax,0x0720
mov bx,0
mov cx,2
Check:
push cx
push di
mov cx,4
repe scasw
cmp cx,0
pop di
pop cx
jne exitLeftRight
add di,160
loop Check
mov bx,1
exitLeftRight:
pop es
pop cx
pop ax
ret
CollisionDetection:
push bx
push cx
push dx
push si
push di
push es
push ds
mov ax,0
cmp word[CurrShapeType],1
je near CheckIShapeCollision
cmp word[CurrShapeType],2
je near CheckLShapeCollision
cmp word[CurrShapeType],3
je near CheckTShapCollision
cmp word[CurrShapeType],4
je near CheckSShapCollision
CheckIShapeCollision:
mov bx,[CurrShape_Address]
mov di,bx
add di,1280
call CheckSqaureCollision
cmp dx,0
je near CollisionDetectionFailed
RightCheckI:
cmp word[Offset_Address],0
jle LeftCheckI
mov di,[CurrShape_Address]
add di,8
mov cx,4
ICollisionloopRight:
push di
call CheckLeftRightCollision
pop di
cmp bx,0
je near reset
add di,320
loop ICollisionloopRight
jmp endDet
LeftCheckI:
cmp word[Offset_Address],0
je near endDet
mov di,[CurrShape_Address]
sub di,8
mov cx,4
ICollisionloopLeft:
push di
call CheckLeftRightCollision
pop di
cmp bx,0
je near reset
add di,320
loop ICollisionloopLeft
jmp endDet
CheckLShapeCollision:
mov bx,[CurrShape_Address]
mov di,bx
add di,960
mov bx,di
call CheckSqaureCollision
cmp dx,0
je near CollisionDetectionFailed
mov di,bx
sub di,8
call CheckSqaureCollision
cmp dx,0
je near CollisionDetectionFailed
RightCheckL:
cmp word[Offset_Address],0
jle LeftCheckL
mov di,[CurrShape_Address]
add di,8
mov cx,3
LCollisionloopRight:
push di
call CheckLeftRightCollision
pop di
cmp bx,0
je near reset
add di,320
loop LCollisionloopRight
jmp endDet
LeftCheckL:
cmp word[Offset_Address],0
je near endDet
mov di,[CurrShape_Address]
sub di,8
mov cx,2
LCollisionloopLeft:
push di
call CheckLeftRightCollision
pop di
cmp bx,0
je near reset
add di,320
loop LCollisionloopLeft
sub di,8
call CheckLeftRightCollision
cmp bx,0
je near reset
jmp endDet
CheckTShapCollision:
mov bx,[CurrShape_Address]
mov di,bx
add di,320
call CheckSqaureCollision
cmp dx,0
je near CollisionDetectionFailed
mov di,bx
add di,336
call CheckSqaureCollision
cmp dx,0
je near CollisionDetectionFailed
mov di,bx
add di,648
call CheckSqaureCollision
cmp dx,0
je near CollisionDetectionFailed
RightCheck:
cmp word[Offset_Address],0
jle LeftCheck
mov di,[CurrShape_Address]
add di,24
call CheckLeftRightCollision
cmp bx,0
je near reset
mov di,[CurrShape_Address]
add di,336
call CheckLeftRightCollision
cmp bx,0
je near reset
jmp endDet
LeftCheck:
cmp word[Offset_Address],0
je near endDet
mov di,[CurrShape_Address]
sub di,8
call CheckLeftRightCollision
cmp bx,0
je near reset
mov di,[CurrShape_Address]
add di,320
call CheckLeftRightCollision
cmp bx,0
je reset
jmp endDet
CheckSShapCollision:
mov bx,[CurrShape_Address]
mov di,bx
add di,640
call CheckSqaureCollision
cmp dx,0
je CollisionDetectionFailed
mov di,bx
add di,648
call CheckSqaureCollision
cmp dx,0
je CollisionDetectionFailed
RightCheckS:
cmp word[Offset_Address],0
jle LeftCheckI
mov di,[CurrShape_Address]
add di,16
mov cx,2
SCollisionloopRight:
push di
call CheckLeftRightCollision
pop di
cmp bx,0
je reset
add di,320
loop SCollisionloopRight
jmp endDet
LeftCheckS:
cmp word[Offset_Address],0