From 9c79b3bba26e27663ae65f42cf73e0c580f89cfa Mon Sep 17 00:00:00 2001 From: Ry Date: Tue, 21 Jun 2022 19:04:31 -0700 Subject: [PATCH] Remove unused `extern` and `global` tables from FXF --- src/main.rs | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/src/main.rs b/src/main.rs index 3a231f8..fe8fb26 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,12 +35,8 @@ lazy_static! { //const FXF_CODE_SIZE: usize = 0x00000004; //const FXF_CODE_PTR: usize = 0x00000008; -//const FXF_EXTERN_SIZE: usize = 0x0000000C; -//const FXF_EXTERN_PTR: usize = 0x00000010; -//const FXF_GLOABL_SIZE: usize = 0x00000014; -//const FXF_GLOBAL_PTR: usize = 0x00000018; -const FXF_RELOC_SIZE: usize = 0x0000001C; -const FXF_RELOC_PTR: usize = 0x00000020; +const FXF_RELOC_SIZE: usize = 0x0000000C; +const FXF_RELOC_PTR: usize = 0x00000010; #[derive(Debug, Clone)] struct BackpatchTarget { @@ -414,17 +410,7 @@ fn main() { // code size binary.extend_from_slice(&u32::to_le_bytes(code_size as u32)); // code pointer - binary.extend_from_slice(&u32::to_le_bytes(0x24)); // code starts after the header - - // extern table size - binary.extend_from_slice(&u32::to_le_bytes(0)); - // extern table pointer - binary.extend_from_slice(&u32::to_le_bytes(0)); - - // global table size - binary.extend_from_slice(&u32::to_le_bytes(0)); - // global table pointer - binary.extend_from_slice(&u32::to_le_bytes(0)); + binary.extend_from_slice(&u32::to_le_bytes(0x14)); // code starts after the header // reloc table size binary.extend_from_slice(&u32::to_le_bytes(0));