mirror of https://github.com/lianthony/NT4.0
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.
36 lines
296 B
36 lines
296 B
;
|
|
; Macro to define pageable code under Chicago and later
|
|
; operating systems.
|
|
;
|
|
|
|
NBT_PAGEABLE_CODE_SEG MACRO
|
|
|
|
ifdef CHICAGO
|
|
|
|
VxD_PAGEABLE_CODE_SEG
|
|
|
|
else
|
|
|
|
VxD_CODE_SEG
|
|
|
|
endif
|
|
|
|
endm
|
|
|
|
|
|
|
|
|
|
|
|
NBT_PAGEABLE_CODE_ENDS MACRO
|
|
|
|
ifdef CHICAGO
|
|
|
|
VxD_PAGEABLE_CODE_ENDS
|
|
|
|
else
|
|
|
|
VxD_CODE_ENDS
|
|
|
|
endif
|
|
|
|
endm
|