Add more spacing between the jump tables

This commit is contained in:
Ry 2022-06-24 17:24:08 -07:00
parent 04761c1a07
commit df95829e83
2 changed files with 9 additions and 9 deletions

View File

@ -4,13 +4,13 @@
get_os_version: jmp [0x00000810] get_os_version: jmp [0x00000810]
; FXF jump table ; FXF jump table
parse_fxf_binary: jmp [0x00000820] parse_fxf_binary: jmp [0x00000910]
; task jump table ; task jump table
new_task: jmp [0x00000830] new_task: jmp [0x00000A10]
yield_task: jmp [0x00000834] yield_task: jmp [0x00000A14]
end_current_task: jmp [0x00000838] end_current_task: jmp [0x00000A18]
; memory jump table ; memory jump table
allocate_memory: jmp [0x00000840] allocate_memory: jmp [0x00000B10]
free_memory: jmp [0x00000844] free_memory: jmp [0x00000B14]

View File

@ -18,17 +18,17 @@ jump_table:
data.32 get_os_version data.32 get_os_version
; FXF jump table ; FXF jump table
org.pad 0x00000820 org.pad 0x00000910
data.32 parse_fxf_binary data.32 parse_fxf_binary
; task jump table ; task jump table
org.pad 0x00000830 org.pad 0x00000A10
data.32 new_task data.32 new_task
data.32 yield_task data.32 yield_task
data.32 end_current_task data.32 end_current_task
; memory jump table ; memory jump table
org.pad 0x00000840 org.pad 0x00000B10
data.32 allocate_memory data.32 allocate_memory
data.32 free_memory data.32 free_memory