From a02a286aeab4397b7b9b8a9ee6f379278e4e5870 Mon Sep 17 00:00:00 2001 From: shockrahwow Date: Wed, 16 Jan 2019 15:50:43 -0800 Subject: [PATCH] testing colors in the frame buffer --- loader.asm | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/loader.asm b/loader.asm index a06de7e..82dc859 100644 --- a/loader.asm +++ b/loader.asm @@ -14,7 +14,7 @@ C equ 1 KERNEL_STACK_SIZE equ 4096 ; external labels(cdecl) calling convention -extern sum +extern colors section .bss align 4 ; aligning to bytes for x86(32-bit) reasons @@ -35,12 +35,8 @@ align 4 dd CHECKSUM loader: - mov eax, 0X1234ABCD - ; call our external function - push dword C - push dword B - push dword A - call sum + ; pls + call colors .loop: jmp .loop