diff --git a/kernel/fxf/FXF specification.md b/kernel/fxf/FXF specification.md index 268ddc3..46c4b8a 100644 --- a/kernel/fxf/FXF specification.md +++ b/kernel/fxf/FXF specification.md @@ -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 | diff --git a/kernel/fxf/fxf.asm b/kernel/fxf/fxf.asm index 8e105e8..b16e9bc 100644 --- a/kernel/fxf/fxf.asm +++ b/kernel/fxf/fxf.asm @@ -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