- zeldaret/oot at 8f1fd58f22518857a1131582af0d41adfde2dad9 https://github.com/zeldaret/oot/tree/8f1fd58f22518857a1131582af0d41adfde2dad9 - cflow https://www.gnu.org/software/cflow/ See cflow_cmd.sh for the full command used (including the list of files) The attached .txt files use different cflow arguments, `cflow_cmd.sh` is for `cflow_code_b_noargs_D.txt` `cflow_code.txt` uses: ``` cflow -Iinclude -Isrc -Iassets -Ibuild -I. --cpp -o cflow_code.txt \ ``` `cflow_code_b_noargs.txt` uses: ``` cflow \ -Iinclude -Isrc -Iassets -Ibuild -I. \ --cpp \ --brief --omit-arguments \ -o cflow_code_b_noargs.txt \ \ ``` `cflow_code_b_noargs_D.txt` uses: ``` cflow \ -Iinclude -Isrc -Iassets -Ibuild -I. \ -D_MIPS_ISA_MIPS2=2 -D_MIPS_ISA=_MIPS_ISA_MIPS2 -D_ABIO32=1 -D_MIPS_SIM=_ABIO32 -D_MIPS_SZINT=32 -D_MIPS_SZLONG=32 -D_MIPS_SZPTR=32 \ -D_LANGUAGE_C \ --cpp \ --brief --omit-arguments \ -o cflow_code_b_noargs_D.txt \ \ ```