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.
39 lines
453 B
39 lines
453 B
/*[
|
|
|
|
c_addr.h
|
|
|
|
LOCAL CHAR SccsID[]="@(#)c_addr.h 1.4 02/09/94";
|
|
|
|
Memory Addressing Support.
|
|
--------------------------
|
|
|
|
]*/
|
|
|
|
IMPORT IU32 address_add
|
|
|
|
IPT2(
|
|
IU32, offset,
|
|
IS32, delta
|
|
|
|
);
|
|
|
|
IMPORT VOID d_mem
|
|
|
|
IPT5(
|
|
IU8, modRM,
|
|
IU8 **, p,
|
|
IU8, segment_override,
|
|
ISM32 *, seg,
|
|
IU32 *, off
|
|
|
|
);
|
|
|
|
IMPORT VOID limit_check
|
|
|
|
IPT4(
|
|
ISM32, indx,
|
|
IU32, offset,
|
|
ISM32, nr_items,
|
|
IUM8, op_sz
|
|
|
|
);
|