You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
15 lines
239 B
C
15 lines
239 B
C
#include <ultra64.h>
|
|
#include <PR/gs2dex.h>
|
|
#include "init.h"
|
|
|
|
void s2d_init(void) {
|
|
gSPLoadUcode(gdl_head++, s2d_text, s2d_data);
|
|
}
|
|
|
|
void s2d_stop(void) {
|
|
gSPLoadUcode(gdl_head++, zex_text, zex_data);
|
|
my_rdp_init();
|
|
my_rsp_init();
|
|
}
|
|
|