| 1920 | } |
| 1921 | |
| 1922 | void N64Recomp::LiveGenerator::emit_do_break(uint32_t instr_vram) const { |
| 1923 | // Load the vram into R0. |
| 1924 | sljit_emit_op1(compiler, SLJIT_MOV32, SLJIT_R0, 0, SLJIT_IMM, instr_vram); |
| 1925 | // Call do_break. |
| 1926 | sljit_emit_icall(compiler, SLJIT_CALL, SLJIT_ARGS1V(32), SLJIT_IMM, sljit_sw(inputs.do_break)); |
| 1927 | } |
| 1928 | |
| 1929 | void N64Recomp::LiveGenerator::emit_pause_self() const { |
| 1930 | // Load rdram into R0. |
nothing calls this directly
no outgoing calls
no test coverage detected