X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=ld45_start_nothing;a=blobdiff_plain;f=src%2Fmain.asm;h=c0af0ad44526b0682e9a65ac622d71788538ee88;hp=ade0e527bf96bb52ce27d23e1356b976793ee55e;hb=6a16a1c526937ee551f968901cb949d55e35ecda;hpb=43024162f96501c111a0fb7ff6b14f39d478c1a3 diff --git a/src/main.asm b/src/main.asm index ade0e52..c0af0ad 100644 --- a/src/main.asm +++ b/src/main.asm @@ -2,15 +2,20 @@ 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 clear - cli - hlt + push word 100 + push word 160 + push word 0 + call slow_sprite + + call wait_vsync + call swap_buffers + jmp main_loop + +%include "gfx.asm" + +%include "data/sprsheet.inc"