move VBlank interrupt label from main.asm to engine/vblank.asm

This commit is contained in:
yenatch 2013-08-29 19:40:33 -04:00
parent 2c16bc7ab9
commit cc98fab33e
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,8 @@
; This prevents the display and audio output from lagging.
VBlank: ; 283
push af
push bc
push de

View File

@ -58,7 +58,7 @@ SECTION "start",ROM0[$150]
INCLUDE "engine/init.asm"
VBlank: ; 283
INCLUDE "engine/vblank.asm"