mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-23 23:05:53 -04:00
cbe41239d7
* 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>
28 lines
625 B
C
28 lines
625 B
C
#ifndef _ULTRA64_UCODE_H_
|
|
#define _ULTRA64_UCODE_H_
|
|
|
|
#define SP_DRAM_STACK_SIZE8 0x400
|
|
#define SP_UCODE_SIZE 0x1000
|
|
#define SP_UCODE_DATA_SIZE 0x800
|
|
|
|
// standard boot ucode
|
|
extern u64 rspF3DBootStart[], rspF3DBootEnd[];
|
|
|
|
// F3D ucode
|
|
extern u64 gspF3DEXTextStart[], gspF3DEXTextEnd[];
|
|
|
|
extern u64 gspF3DLXTextStart[], gspF3DLXTextEnd[];
|
|
|
|
// F3D ucode data
|
|
extern u64 gspF3DEXDataStart[], gspF3DEXDataEnd[];
|
|
|
|
extern u64 gspF3DLXDataStart[], gspF3DLXDataEnd[];
|
|
|
|
// aspMain (audio) ucode
|
|
extern u64 rspAspMainStart[], rspAspMainEnd[];
|
|
|
|
// aspMain ucode data
|
|
extern u64 rspAspMainDataStart[], rspAspMainDataEnd[];
|
|
|
|
#endif
|