From 7d100e5c3e4c58b8e2e919945c42f18b5f7d4a55 Mon Sep 17 00:00:00 2001 From: Medium Fries Date: Mon, 25 Feb 2019 16:07:04 -0800 Subject: [PATCH] removed frame out stuff from laptop local branch --- loader.asm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/loader.asm b/loader.asm index 9ad642c..b9f6643 100644 --- a/loader.asm +++ b/loader.asm @@ -11,8 +11,7 @@ CHECKSUM equ -MAGIC_NUMBER KERNEL_STACK_SIZE equ 4096 -; external labels(cdecl) calling convention -extern test +; Test funcs are generic void handler's in whatever the target module is section .text ; align all instructions to 4 byte boundary by the x86 instruction set law @@ -23,7 +22,6 @@ align 4 dd CHECKSUM loader: - call test .loop: jmp .loop