aboutsummaryrefslogtreecommitdiff
path: root/src-68k/video/vsync.68k
diff options
context:
space:
mode:
Diffstat (limited to 'src-68k/video/vsync.68k')
-rw-r--r--src-68k/video/vsync.68k19
1 files changed, 0 insertions, 19 deletions
diff --git a/src-68k/video/vsync.68k b/src-68k/video/vsync.68k
deleted file mode 100644
index ed5ac17..0000000
--- a/src-68k/video/vsync.68k
+++ /dev/null
@@ -1,19 +0,0 @@
-;****************************************************************************
-; VSync
-; Waits until the next frame
-;****************************************************************************
-
-VSync:
- lea ($C00004), a6
-
-@Loop1: ; Wait until current VBlank is over
- move.w (a6), d7
- btst.l #3, d7
- bne.s @Loop1
-
-@Loop2: ; Wait until next VBlank starts
- move.w (a6), d7
- btst.l #3, d7
- beq.s @Loop2
-
- rts ; End of subroutine