mirror of
https://github.com/open-goal/jak-project
synced 2026-05-26 23:47:57 -04:00
expand symbol table (#1534)
* expand symbol table * ah! * fix minor errors * fix kernel test * fix another test
This commit is contained in:
@@ -304,7 +304,8 @@ void setup_hack_heaps(void* mem, int size) {
|
||||
init_crc();
|
||||
|
||||
// create a fake symbol table
|
||||
auto symbol_table = kmalloc(kglobalheap, 0x20000, KMALLOC_MEMSET, "symbol-table").cast<u32>();
|
||||
auto symbol_table =
|
||||
kmalloc(kglobalheap, SYM_TABLE_MEM_SIZE, KMALLOC_MEMSET, "symbol-table").cast<u32>();
|
||||
s7 = symbol_table + (GOAL_MAX_SYMBOLS / 2) * 8 + BASIC_OFFSET;
|
||||
SymbolTable2 = symbol_table + BASIC_OFFSET;
|
||||
LastSymbol = symbol_table + 0xff00;
|
||||
|
||||
Reference in New Issue
Block a user