home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
progc
/
djemu106.arj
/
E27.CC
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-04-28
|
283 b
|
22 lines
#include "emu.h"
#include "rmov.h"
void emu_27()
{
if (empty())
return;
if (modrm > 0277)
{
//
emu_bad();
}
else
{
// fidivr m32int
reg t, t2;
r_mov((long *)get_modrm(), t);
r_div(t, st(), t2);
r_mov(t2, st());
}
}