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.
29 lines
338 B
29 lines
338 B
/*
|
|
c_div64.h
|
|
|
|
Define all 64-bit Divide Functions.
|
|
*/
|
|
|
|
/*
|
|
static char SccsID[]="@(#)c_div64.h 1.4 02/09/94";
|
|
*/
|
|
|
|
IMPORT VOID divu64
|
|
|
|
IPT4(
|
|
IU32 *, hr,
|
|
IU32 *, lr,
|
|
IU32, divisor,
|
|
IU32 *, rem
|
|
|
|
);
|
|
|
|
IMPORT VOID div64
|
|
|
|
IPT4(
|
|
IS32 *, hr,
|
|
IS32 *, lr,
|
|
IS32, divisor,
|
|
IS32 *, rem
|
|
|
|
);
|