home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * mnem_float.c
- * Copyright © 1992 Niklas Röjemo
- */
-
- #include "mnemonics.h"
- #include "input.h"
- #include "get.h"
- #include "put.h"
- #include "help_cop.h"
-
- static void dstmem(unsigned int ir)
- {
- ir |= DST_OP(getFpuReg());
- ir = help_copAddr(ir);
- putIns(ir);
- }
-
- void m_stf(unsigned int cc)
- {
- dstmem(0x0c000100 | cc);
- }
-
- void m_ldf(unsigned int cc)
- {
- dstmem(0x0c100100 | cc);
- }
-