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_mul64.h
|
|
|
|
Define all 64-bit Multiplication Functions.
|
|
*/
|
|
|
|
/*
|
|
static char SccsID[]="@(#)c_mul64.h 1.4 02/09/94";
|
|
*/
|
|
|
|
IMPORT VOID mul64
|
|
|
|
IPT4(
|
|
IS32 *, hr,
|
|
IS32 *, lr,
|
|
IS32, mcand,
|
|
IS32, mpy
|
|
|
|
);
|
|
|
|
IMPORT VOID mulu64
|
|
|
|
IPT4(
|
|
IU32 *, hr,
|
|
IU32 *, lr,
|
|
IU32, mcand,
|
|
IU32, mpy
|
|
|
|
);
|