Super Mario 64s source code (from a leak on 4chan so be careful)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
505 B

6 years ago
  1. #ifndef _ULTRA64_UCODE_H_
  2. #define _ULTRA64_UCODE_H_
  3. #define SP_DRAM_STACK_SIZE8 0x400
  4. #define SP_UCODE_SIZE 0x1000
  5. #define SP_UCODE_DATA_SIZE 0x800
  6. // standard boot ucode
  7. extern u64 rspF3DBootStart[], rspF3DBootEnd[];
  8. // F3D ucode
  9. extern u64 rspF3DStart[], rspF3DEnd[];
  10. // F3D ucode data
  11. extern u64 rspF3DDataStart[], rspF3DDataEnd[];
  12. // aspMain (audio) ucode
  13. extern u64 rspAspMainStart[], rspAspMainEnd[];
  14. // aspMain ucode data
  15. extern u64 rspAspMainDataStart[], rspAspMainDataEnd[];
  16. #endif