1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-26 21:29:33 +00:00
8bitworkshop/presets/c64/common.c
2020-02-03 22:17:27 -06:00

11 lines
145 B
C

#include "common.h"
void raster_wait(unsigned char line) {
while (VIC.rasterline < line) ;
}
void wait_vblank(void) {
raster_wait(255);
}