| 1927 | } |
| 1928 | |
| 1929 | void N64Recomp::LiveGenerator::emit_pause_self() const { |
| 1930 | // Load rdram into R0. |
| 1931 | sljit_emit_op2(compiler, SLJIT_ADD, SLJIT_R0, 0, Registers::rdram, 0, SLJIT_IMM, rdram_offset); |
| 1932 | // Call pause_self. |
| 1933 | sljit_emit_icall(compiler, SLJIT_CALL, SLJIT_ARGS1V(P), SLJIT_IMM, sljit_sw(inputs.pause_self)); |
| 1934 | } |
| 1935 | |
| 1936 | void N64Recomp::LiveGenerator::emit_trigger_event(uint32_t event_index) const { |
| 1937 | // Load rdram and ctx into R0 and R1. |
nothing calls this directly
no outgoing calls
no test coverage detected