Remove unused extern and global tables from FXF

This commit is contained in:
Ry 2022-06-21 19:05:34 -07:00
parent f6c41797f8
commit 30f8ec6d81
2 changed files with 4 additions and 12 deletions

View File

@ -4,9 +4,5 @@
| 0x00000003 | header version (must be 0) |
| 0x00000004-0x00000007 | code size |
| 0x00000008-0x0000000B | pointer to code |
| 0x0000000C-0x0000000F | `extern` table size |
| 0x00000010-0x00000013 | pointer to `extern` table |
| 0x00000014-0x00000017 | `global` table size |
| 0x00000018-0x0000001B | pointer to `global` table |
| 0x0000001C-0x0000001F | reloc table size |
| 0x00000020-0x00000023 | pointer to reloc table |
| 0x0000000C-0x0000000F | reloc table size |
| 0x00000010-0x00000013 | pointer to reloc table |

View File

@ -16,9 +16,5 @@ parse_fxf_binary:
const FXF_CODE_SIZE: 0x00000004
const FXF_CODE_PTR: 0x00000008
const FXF_EXTERN_SIZE: 0x0000000C
const FXF_EXTERN_PTR: 0x00000010
const FXF_GLOABL_SIZE: 0x00000014
const FXF_GLOBAL_PTR: 0x00000018
const FXF_RELOC_SIZE: 0x0000001C
const FXF_RELOC_PTR: 0x00000020
const FXF_RELOC_SIZE: 0x0000000C
const FXF_RELOC_PTR: 0x00000010