Note what these are, at least!
Chris Pressey
10 years ago
11 | 11 |
|
12 | 12 |
SEGMENT .text
|
13 | 13 |
|
14 | |
DiscoverVidBase:mov ax, 0500h
|
|
14 |
DiscoverVidBase:mov ax, 0500h ; SELECT ACTIVE DISPLAY PAGE -> 0
|
15 | 15 |
int 10h
|
16 | |
mov ah, 15
|
|
16 |
mov ah, 15 ; GET CURRENT VIDEO MODE, ah -> col, al -> mode, bh -> active page
|
17 | 17 |
int 10h
|
18 | 18 |
cmp al, 7
|
19 | 19 |
jne .UseDefault
|