mirror of
https://github.com/n64decomp/mk64
synced 2026-05-25 15:05:18 -04:00
91fc8ea473
* Some train decomp * Move seg2 to ending/ * move racing code files into racing folder * Fix progress * Rename segments
13 lines
278 B
C
13 lines
278 B
C
#ifndef SEGMENTS_H
|
|
#define SEGMENTS_H
|
|
|
|
#define SEG_START 0x80000000
|
|
#define SEG_MAIN 0x80000400
|
|
#define SEG_ENDING_SEQUENCES 0x80280000
|
|
#define SEG_RACING 0x8028DF00
|
|
#define SEG_FRAMEBUFFERS 0x802BA290
|
|
#define SEG_802BA370 0x802BA370
|
|
#define SEG_AUDIO 0x803AF780
|
|
|
|
#endif
|