; vi:filetype=nasm ts=8 sts=8 sw=8: bits 32 section .text extern init_gfx extern clear extern slow_sprite extern wait_vsync extern swap_buffers call init_gfx main_loop: call clear push word 100 push word 160 push word 0 call slow_sprite add esp, 6 call wait_vsync call swap_buffers jmp main_loop