; vi:filetype=nasm ts=8 sts=8 sw=8: bits 16 org 7e00h ; that's where our boot loader puts us (see src/boot/boot.asm) call init_gfx main_loop: call wait_vsync call swap_buffers jmp main_loop %include "gfx.asm" %include "data.asm"