25 lines
1.3 KiB
C
25 lines
1.3 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* Objective Caml */
|
|
/* */
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 2003 Institut National de Recherche en Informatique et */
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
/* Code specific to the MIPS architecture. */
|
|
|
|
#define BngMult(resh,resl,arg1,arg2) \
|
|
asm("multu %2, %3 \n\t" \
|
|
"mflo %0 \n\t" \
|
|
"mfhi %1" \
|
|
: "=r" (resl), "=r" (resh) \
|
|
: "r" (arg1), "r" (arg2))
|
|
|