MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / emit_do_break

Method emit_do_break

LiveRecomp/live_generator.cpp:1922–1927  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1920}
1921
1922void 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
1929void N64Recomp::LiveGenerator::emit_pause_self() const {
1930 // Load rdram into R0.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected