diff options
| author | Tyler McGavran <tyler.taggerung@gmail.com> | 2023-11-07 22:38:25 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-07 20:38:25 -0700 |
| commit | cbe41239d7f27bf7d5a0850f2b1673dd48f30611 (patch) | |
| tree | 1d7ff60c70c99d5a01b5269be52f3a5ee4c94a21 /data | |
| parent | f75460cb8bb193f76ae2d99afa93e1ea0b26aa2c (diff) | |
More audio stuff (#488)
* Match create_next_audio_frame_task
Required some variable renaming and other changes
* Match synthesis_execute
I'm not entirly sure about the way we have stuff ifdef'd in
PR/abi.h. I feel like we're doing something slightly wrong there
* Match synthesis_do_one_audio_update
There's something super fucked with the way our ifdef's work in
abi.h. It is going to demand a lot more attention sometime in the
future.
* Rename a couple functions
Also had to hack up the ABI file a bit. I'm convinced that we
don't need nor want to have the EU/Shindou/US split thing the
SM64 code does. There's probably just the 1 ABI version being
used and we need to figure out what it looks like
Signed-off-by: Taggerung <tyler.taggerung@email.com>
Diffstat (limited to 'data')
| -rw-r--r-- | data/rsp.s | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/data/rsp.s b/data/rsp.s index c2308ea44..2ba2e848a 100644 --- a/data/rsp.s +++ b/data/rsp.s @@ -6,9 +6,9 @@ .section .text, "ax" # 0x800D8F70 D9B70-D9C40 -glabel rspbootTextStart +glabel rspF3DBootStart .incbin "bin/lib/PR/boot/F3D_boot.bin" -glabel rspbootTextEnd +glabel rspF3DBootEnd # 0x800D9040 D9C40-DB020 glabel gspF3DEXTextStart @@ -21,9 +21,9 @@ glabel gspF3DLXTextStart glabel gspF3DLXTextEnd # 0x800DB830 DC430-DD0A0 -glabel aspMainTextStart +glabel rspAspMainStart .incbin "bin/lib/PR/audio/aspMain.bin" -glabel aspMainTextEnd +glabel rspAspMainEnd .section .data @@ -35,9 +35,9 @@ glabel gspF3DEXDataEnd # 0x800F4500 F5100-F5900 glabel gspF3DLXDataStart .incbin "bin/lib/PR/f3d/F3DLX_data.bin" -glabel gspF3DLXDataEn +glabel gspF3DLXDataEnd # 0x800F4D00 F5900-F5C00 -glabel aspMainDataStart +glabel rspAspMainDataStart .incbin "bin/lib/PR/audio/aspMain_data.bin" -glabel aspMainDataEnd +glabel rspAspMainDataEnd |
