diff options
Diffstat (limited to 'src/features/load.c')
-rw-r--r-- | src/features/load.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/features/load.c b/src/features/load.c index 37ed6ad..47beb9b 100644 --- a/src/features/load.c +++ b/src/features/load.c @@ -1,5 +1,6 @@ #include <def.h> #include <fs.h> +#include <load.h> #include <print.h> void bin_load(char *path) @@ -7,7 +8,7 @@ void bin_load(char *path) char *data = read_file(path); void (*entry)(); - *(void **)(&entry) = data + 0xfe; + *(void **)(&entry) = data + MAIN_OFFSET; entry(); } |