c0af0ad44526b0682e9a65ac622d71788538ee88
[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 clear
9
10         push word 100
11         push word 160
12         push word 0
13         call slow_sprite
14
15         call wait_vsync
16         call swap_buffers
17         jmp main_loop
18
19 %include "gfx.asm"
20
21 %include "data/sprsheet.inc"