mirror of
https://github.com/sal063/AC6_recomp
synced 2026-06-30 03:49:10 -04:00
12 lines
503 B
Plaintext
12 lines
503 B
Plaintext
//=============================================================================
|
|
// ReXGlue Generated - {{ project }} Function Mapping Table
|
|
//=============================================================================
|
|
|
|
#include "{{ project }}_init.h"
|
|
|
|
PPCFuncMapping PPCFuncMappings[] = {
|
|
{% for fn in functions %}{% if not fn.below_code_base %} { {{ fn.address }}, {{ fn.name }} },
|
|
{% endif %}{% endfor %}{% for imp in imports %} { {{ imp.address }}, {{ imp.name }} },
|
|
{% endfor %} { 0, nullptr }
|
|
};
|