mirror of
https://github.com/n64decomp/mk64
synced 2026-06-07 19:31:31 -04:00
4e5946257d
* Updated the Makefile to make the VERSION_US file get used when compiling stuff. * Updated the abi.h file to match SM64, with some modifications to support the currently targeted version (US). Signed-off-by: Taggerung <tyler.taggerung@gmail.com>
22 lines
485 B
TOML
22 lines
485 B
TOML
# Optional configuration file for import.py. Put it in the root or in tools/
|
|
# of the repo you are importing from.
|
|
|
|
[decompme.compilers]
|
|
"tools/ido5.3_recomp/cc" = "ido5.3"
|
|
|
|
[preserve_macros]
|
|
"gs?DP.*" = "void"
|
|
"gs?SP.*" = "void"
|
|
"G_.*" = "int"
|
|
"VIRTUAL_.*" = "unsigned int"
|
|
"PHYSICAL_.*" = "unsigned int"
|
|
"TIME_TRIAL_.*" = "int"
|
|
"TEXT_.*" = "int"
|
|
"OS_.*" = "int"
|
|
"SEGMENT_.*" = "int"
|
|
"ACTOR_.*" = "int"
|
|
"A_[A-Z]+" = "int"
|
|
"a[A-Za-z]+" = "void"
|
|
"_SHIFT[LR]" = "void"
|
|
"ALIGN.*" = "int"
|