home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware 1 2 the Maxx
/
sw_1.zip
/
sw_1
/
PROGRAM
/
DJEMU106.ZIP
/
EMU387
/
E50.CC
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-21
|
277b
|
21 lines
#include "emu.h"
#include "rmov.h"
void emu_50()
{
if (full())
return;
if (modrm > 0277)
{
// ffree st(i)
int i = modrm & 7;
st(i).tag = TW_E;
}
else
{
// fld m64real
top--;
r_mov((double *)get_modrm(), st());
}
}