testing colors in the frame buffer

This commit is contained in:
shockrahwow 2019-01-16 15:50:43 -08:00
parent 24d62e82f2
commit a02a286aea

View File

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