thiagoauler-apple1/src/main.c

10 lines
140 B
C
Raw Permalink Normal View History

2017-11-12 02:31:55 +00:00
#include "inc/6502.h"
int main(int argc, char **argv)
{
2017-11-13 01:00:52 +00:00
init(); // start the processor
run(); // and runs it
2017-11-12 02:31:55 +00:00
return 0;
}