added some graphics routines
[ld45_start_nothing] / src / main.asm
index ade0e52..51bcbfa 100644 (file)
@@ -2,15 +2,13 @@
        bits 16
        org 7e00h ; that's where our boot loader puts us (see src/boot/boot.asm)
 
-       mov ax, 13h
-       int 10h
+       call init_gfx
 
-       mov ax, 0a000h
-       mov es, ax
-       xor di, di
-       mov ax, 0x404
-       mov cx, 32000
-       rep stosw
+main_loop:
+       call wait_vsync
+       call swap_buffers
+       jmp main_loop
 
-       cli
-       hlt
+%include "gfx.asm"
+
+%include "data.asm"