home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGASM.ZIP
/
PROG025.ASM
< prev
next >
Wrap
Assembly Source File
|
1988-04-10
|
655b
|
17 lines
;************************************************************************
; Fetching page size from BIOS data area *
; Exit: AX - Page size *
;************************************************************************
PUBLIC _Get_Page_Size
_Get_Page_Size PROC NEAR
PUSH ES ;Preserve ES
XOR AX,AX ;Set ES to segment zero
MOV ES,AX
MOV AX,ES:[BIOS_Page_Size] ;Fetch page size
POP ES ;Restrore ES
RET
_Get_Page_Size ENDP