51bcbfa6126d290c914f9758ad22991e311f616a
[ld45_start_nothing] / src / main.asm
1 ; vi:filetype=nasm ts=8 sts=8 sw=8:
2         bits 16
3         org 7e00h ; that's where our boot loader puts us (see src/boot/boot.asm)
4
5         call init_gfx
6
7 main_loop:
8         call wait_vsync
9         call swap_buffers
10         jmp main_loop
11
12 %include "gfx.asm"
13
14 %include "data.asm"