You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
Refresh 3
This commit is contained in:
10
include/make_const_nonconst.h
Normal file
10
include/make_const_nonconst.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef MAKE_CONST_NONCONST_H
|
||||
#define MAKE_CONST_NONCONST_H
|
||||
|
||||
#ifdef __sgi
|
||||
// IDO sometimes puts const variables in .rodata and sometimes in .data, which breaks ordering.
|
||||
// This makes sure all variables are put into the same section (.data).
|
||||
#define const
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user