thiagoauler-apple1/src/main.c

14 lines
224 B
C

#include <stdio.h>
#include "inc/6502.h"
int main(int argc, char **argv)
{
setbuf(stdout, NULL);
printf("Apple-I Computer\n");
init(); // start the processor
run(); // and runs it
return 0;
}