mirror of
https://github.com/n64decomp/mk64
synced 2026-05-24 15:01:10 -04:00
17a6f4bb3d
* update clang and add action * try clang on course folder only * forget two file * Update course_displaylists.inc.c * forget few other file * Update course_vertices.inc.c * format all code while get it match * second pass * format other dir * disable clang format on bad ido code * fix some tabulation * revert format on tool dir * Update clang-format.yml * ignore gbi.h * add some read me instruction * fix error * format and fixing error * Update README.md --------- Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
28 lines
618 B
C
28 lines
618 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
|