mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-12 10:07:00 +00:00
11 lines
145 B
C
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);
|
|
}
|