From 02e6b3f7b6b7f1dcc832a687bdee6dbc8cb700bd Mon Sep 17 00:00:00 2001 From: shockrah Date: Mon, 16 Sep 2019 13:50:30 -0700 Subject: [PATCH] loader calling tests --- loader.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loader.s b/loader.s index 7a65bdf..ea24c2d 100644 --- a/loader.s +++ b/loader.s @@ -9,7 +9,7 @@ CHECKSUM equ -MAGIC_NUMBER ; size in bytes of stack KERNEL_STACK_SIZE equ 4096 -extern test_fb +extern test_write section .text ; align all instructions to 4 byte boundary by the x86 instruction set law @@ -20,7 +20,7 @@ align 4 dd CHECKSUM loader: - call test_fb + call test_write .loop: jmp .loop