You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
411 B
20 lines
411 B
; Definitions of interesting variables in ROM BIOS data segment at 40:0
|
|
;
|
|
; Revision History
|
|
; ================
|
|
; 7/13/90 md Created
|
|
|
|
|
|
ROMBIOS_DATA segment AT 040h
|
|
|
|
org 049h
|
|
|
|
CRT_Mode db ? ; current screen mode
|
|
CRT_Cols dw ? ; current number of columns
|
|
|
|
org 084h
|
|
|
|
CRT_Rows db ? ; current number of screen rows
|
|
DEFAULT_ROWS equ 24 ; standard default for screen height
|
|
|
|
ROMBIOS_DATA ends
|