91d90
<
100c99
< std::string str = "";
---
> string str = "";
117,153d115
< output exec {{
<
< using namespace MipsISA;
<
< /// CLEAR ALL CPU INST/EXE HAZARDS
< inline void
< clear_exe_inst_hazards()
< {
< //CODE HERE
< }
<
<
< /// Check "FP enabled" machine status bit. Called when executing any FP
< /// instruction in full-system mode.
< /// @retval Full-system mode: NoFault if FP is enabled, FenFault
< /// if not. Non-full-system mode: always returns NoFault.
< #if FULL_SYSTEM
< inline Fault checkFpEnableFault(%(CPU_exec_context)s *xc)
< {
< Fault fault = NoFault; // dummy... this ipr access should not fault
< if (!Mips34k::ICSR_FPE(xc->readIpr(MipsISA::IPR_ICSR, fault))) {
< fault = FloatEnableFault;
< }
< return fault;
< }
< #else
< inline Fault checkFpEnableFault(%(CPU_exec_context)s *xc)
< {
< return NoFault;
< }
< #endif
<
<
<
< }};
<
<