Files
mk64/asm/rom_header.s
AloXado320 30fef62f81 Fix EU build and related cleanup and fixes (#710)
* Fix EU build and eu-final offsets

* Fix instrument align and bring EU matches

* Fix EU trig table segment

* Label audio_init

* Simplify float comments

* Proper EU name version defines
2025-05-11 18:00:37 -06:00

35 lines
983 B
ArmAsm

/*
* Mario Kart 64 ROM header
* Only the first 0x18 bytes matter to the console.
*/
.byte 0x80, 0x37, 0x12, 0x40 /* PI BSD Domain 1 register */
.word 0x0000000F /* Clockrate setting*/
.word entry_point /* Entrypoint */
/* Revision */
.word 0x00001446 /* NTSC-U */
.word 0x3E5055B6 /* Checksum 1 */
.word 0x2E92DA52 /* Checksum 2 */
.word 0x00000000 /* Unknown */
.word 0x00000000 /* Unknown */
.ascii "MARIOKART64 " /* Internal ROM name */
.word 0x00000000 /* Unknown */
.word 0x0000004E /* Cartridge */
.ascii "KT" /* Cartridge ID */
/* Region */
.ifdef VERSION_EU
.ascii "P" /* PAL (Europe) */
.else
.ascii "E" /* NTSC-U (North America) */
.endif
.ifdef VERSION_EU_V11
.byte 0x01 /* Version */
.else
.byte 0x00 /* Version */
.endif