mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-04 20:05:57 +00:00
16 lines
229 B
Plaintext
16 lines
229 B
Plaintext
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <cv.h>
|
|
#include <cvu.h>
|
|
|
|
#include "common.h"
|
|
//#link "common.c"
|
|
|
|
void main() {
|
|
vdp_setup();
|
|
cv_set_vint_handler(&vint_handler);
|
|
cv_set_screen_active(true);
|
|
while(1) { }
|
|
}
|