1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-01-24 19:33:17 +00:00

11 lines
145 B
C
Raw Normal View History

2020-02-02 12:17:31 -06:00
#include "common.h"
void raster_wait(unsigned char line) {
while (VIC.rasterline < line) ;
}
void wait_vblank(void) {
raster_wait(255);
}