-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtictac.asm
56 lines (43 loc) · 1.04 KB
/
tictac.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
;===================================================================================================
; TicTac game
;
; Written By: Oded Cnaan ([email protected])
; Site: http://odedc.net
; Licence: GPLv3 (see LICENSE file)
; Package: AsmLib
;
; Description:
; A simple tictac game to demonstrate the library
;===================================================================================================
LOCALS @@
.486
IDEAL
MODEL small
stack 256
DATASEG
CODESEG
; Include library (order is important!)
include "UtilLib.inc"
include "GrLib.inc"
; Include game
include "Tests/tic/bg.asm"
include "Tests/tic/game.asm"
start:
mov ax, @data
mov ds,ax
mov ax, FALSE
ut_init_lib ax
; -- DOUBLE BUFFERING
; Free redundant memory take by program
; to allow using malloc
; call AllocateDblBuffer
gr_set_video_mode_vga
gr_set_color GR_COLOR_GREEN
call PlayTic
exit:
; -- DOUBLE BUFFERING
; call ReleaseDblBuffer
gr_set_video_mode_txt
return 0
END start
CODSEG ends