home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
programming
/
asm_programming
/
DOS32.INC
< prev
next >
Wrap
Text File
|
1993-10-17
|
659b
|
43 lines
public xms_usage
public xms_base
public Base_Segment
public psp_segment
public START32
public IRQ0
public IRQ1
public IRQ2
public IRQ3
public IRQ4
public IRQ5
public IRQ6
public IRQ7
public IRQ8
public IRQ9
public IRQ10
public IRQ11
public IRQ12
public IRQ13
public IRQ14
public IRQ15
extrn Real_GS :dword
extrn Real_FS :dword
extrn Real_DS :dword
extrn Real_ES :dword
extrn Real_SS :dword
extrn Real_SP :dword
;_TEXT SEGMENT public 'CODE' USE32
; macro used for calling DOS and bios Servises in real mode
;but from protected mode
;
DosInt macro n
push n
int 20h
popfd
endm
;ends