-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgfx.asm
62 lines (58 loc) · 1.44 KB
/
gfx.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
;
; Licensed under the MIT license. See LICENSE file in the project root for details.
;
codeseg segment para public 'code'
assume cs:codeseg
public gfx_palette_
gfx_palette_ proc near
push bp
mov bp,sp
push bx
push dx
mov bx,word ptr 4[bp]
xor al,al
mov ah,0Bh
int 10h
pop dx
pop bx
pop bp
xor ax,ax
ret
gfx_palette_ endp
public gfx_mode_
gfx_mode_ proc near
push bp
mov bp,sp
mov al,byte ptr 4[bp]
xor ah,ah
int 10h
pop bp
xor ax,ax
ret
gfx_mode_ endp
public gfx_pixel_
gfx_pixel_ proc near
push bp
mov bp,sp
push di
push si
push bx
push cx
push dx
mov ah, 0ch
mov al, byte ptr 8[bp]
mov bh, 0
mov cx, word ptr 4[bp]
mov dx, word ptr 6[bp]
int 10h
pop dx
pop cx
pop bx
pop si
pop di
pop bp
xor ax,ax
ret
gfx_pixel_ endp
codeseg ends
end