mirror of
https://github.com/sonicdcer/sf64.git
synced 2024-11-23 21:09:56 +00:00
410a5b017b
* fox_versus functions * more functions * more input! * functions so far * fix bss reordering * all functions matching * fix caller addresses * import data cleanup * introduce first_diff to the project * fix wrong type * second version of bss reordering prevention header * move versus symbols to variables.h * BSS importing attempt (failed) terrain is prepared for another contributor to try * fix fox_option NON_MATCHING build * format * remove static keyword from fox_map data symbols * IMPORT BSS * rename fox_versus * FIX ADDRESSES & SYMBOLS y fox map * fix more addresses * more address fixes for fox_map * all fox_map addresses done * fix bss build in fox_map, migration pending * bss reorder failed attempt * remove unused externs * remove unnecessary config file * remove unnecessary entries in settings.json * comments * move structs to fox_map header * put static back in fox_option data * PR review
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
#ifndef PREVENT_BSS_REORDERING2_H
|
|
#define PREVENT_BSS_REORDERING2_H
|
|
|
|
/**
|
|
* See the explanation at prevent_bss_reordering.h
|
|
*
|
|
* Instead of producing 64 dummy declarations, this header only produces 32
|
|
* dummy declarations
|
|
*/
|
|
|
|
struct Dummy100 { int x; };
|
|
struct Dummy101 { int x; };
|
|
struct Dummy102 { int x; };
|
|
struct Dummy103 { int x; };
|
|
struct Dummy104 { int x; };
|
|
struct Dummy105 { int x; };
|
|
struct Dummy106 { int x; };
|
|
struct Dummy107 { int x; };
|
|
struct Dummy108 { int x; };
|
|
struct Dummy109 { int x; };
|
|
struct Dummy110 { int x; };
|
|
struct Dummy111 { int x; };
|
|
struct Dummy112 { int x; };
|
|
struct Dummy113 { int x; };
|
|
struct Dummy114 { int x; };
|
|
struct Dummy115 { int x; };
|
|
struct Dummy116 { int x; };
|
|
struct Dummy117 { int x; };
|
|
struct Dummy118 { int x; };
|
|
struct Dummy119 { int x; };
|
|
struct Dummy120 { int x; };
|
|
struct Dummy121 { int x; };
|
|
struct Dummy122 { int x; };
|
|
struct Dummy123 { int x; };
|
|
struct Dummy124 { int x; };
|
|
struct Dummy125 { int x; };
|
|
struct Dummy126 { int x; };
|
|
struct Dummy127 { int x; };
|
|
struct Dummy128 { int x; };
|
|
struct Dummy129 { int x; };
|
|
struct Dummy130 { int x; };
|
|
struct Dummy131 { int x; };
|
|
|
|
#endif
|