diff --git a/core/hw/sh4/dyna/shil_canonical.h b/core/hw/sh4/dyna/shil_canonical.h index 061e42a55..68c6a5091 100644 --- a/core/hw/sh4/dyna/shil_canonical.h +++ b/core/hw/sh4/dyna/shil_canonical.h @@ -207,18 +207,26 @@ shil_opc_end() //Canonical impl. opcodes ! shil_opc(sync_sr) +shil_canonical +( +void, f1, (), + UpdateSR(); +) shil_compile ( - shil_cf_ext(UpdateSR); - //die(); + shil_cf(f1); ) shil_opc_end() shil_opc(sync_fpscr) +shil_canonical +( +void, f1, (), + UpdateFPSCR(); +) shil_compile ( - shil_cf_ext(UpdateFPSCR); - //die(); + shil_cf(f1); ) shil_opc_end()