loader calling tests

This commit is contained in:
shockrah 2019-09-16 13:50:30 -07:00
parent 69b1f4f164
commit 02e6b3f7b6

View File

@ -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