mirror of
https://github.com/n64decomp/mk64
synced 2026-06-29 02:10:51 -04:00
91fc8ea473
* Some train decomp * Move seg2 to ending/ * move racing code files into racing folder * Fix progress * Rename segments
15 lines
327 B
C
15 lines
327 B
C
#ifndef SEGMENT_SYMBOLS_H
|
|
#define SEGMENT_SYMBOLS_H
|
|
|
|
extern u8 _mainSegNoloadEnd[];
|
|
|
|
extern u8 _endingSequencesSegmentStart[];
|
|
extern u8 _endingSequencesSegmentRomStart[];
|
|
extern u8 _endingSequencesSegmentRomEnd[];
|
|
|
|
extern u8 _racingSegmentStart[];
|
|
extern u8 _racingSegmentRomStart[];
|
|
extern u8 _racingSegmentRomEnd[];
|
|
|
|
#endif
|