You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
29 lines
930 B
ArmAsm
29 lines
930 B
ArmAsm
/*
|
|
* Super Mario 64 ROM header
|
|
* Only the first 0x18 bytes matter to the console.
|
|
*/
|
|
#include "config.h"
|
|
.byte 0x80, 0x37, 0x12, 0x40 /* PI BSD Domain 1 register */
|
|
.word 0x0000000F /* Clockrate setting*/
|
|
.word entry_point /* Entrypoint */
|
|
|
|
/* Revision */
|
|
.word 0x0000144C
|
|
|
|
.word 0x00000000 /* Checksum 1 */
|
|
.word 0x00000000 /* Checksum 2 */
|
|
.word 0x00000000 /* Unknown */
|
|
.word 0x00000000 /* Unknown */
|
|
.ascii INTERNAL_ROM_NAME /* Internal ROM name */
|
|
.word 0x00000000 /* Unknown */
|
|
.word 0x0000004E /* Cartridge */
|
|
.ascii "ED" /* Cartridge ID */
|
|
|
|
/* Region */
|
|
#if defined(VERSION_JP) || defined(VERSION_SH)
|
|
.ascii "J" /* NTSC-J (Japan) */
|
|
#else
|
|
.ascii "E" /* NTSC-U (North America) */
|
|
#endif
|
|
.byte 0x00 /* Version */
|