all: Fix incorrect/old file struct size

Surprised this didn't cause more issues :p
main
Ry 2023-07-11 15:54:08 -07:00
parent 012511bf5f
commit 6a9dc85d81
3 changed files with 4 additions and 6 deletions

View File

@ -110,7 +110,7 @@ allocate_error:
launch_fxf_name: data.str " fxf"
launch_fxf_spaces: data.str " "
launch_fxf_struct: data.32 0 data.32 0
launch_fxf_struct: data.fill 0, 32
launch_fxf_task_id: data.8 0
launch_fxf_binary_ptr: data.32 0
launch_fxf_stack_ptr: data.32 0

View File

@ -37,7 +37,7 @@ error:
rjmp 0
kernel_file_name: data.strz "kernel fxf"
kernel_file_struct: data.32 0 data.32 0
kernel_file_struct: data.fill 0, 32
error_str: data.strz "failed to open kernel file"
boot_disk_id: data.8 0

View File

@ -416,11 +416,9 @@ bottom_bar_patterns:
next_task: data.8 0
current_disk_id: data.8 0
startup_cfg: data.str "startup cfg"
startup_cfg_struct: data.32 0 data.32 0
startup_cfg_struct: data.fill 0, 32
startup_file: data.str " "
startup_file_struct: data.32 0 data.32 0
startup_file_binary_ptr: data.32 0
startup_file_stack_ptr: data.32 0
startup_file_struct: data.fill 0, 32
#include "../../fox32rom/fox32rom.def"