/** * The UI and I/O wrapper for the Mandelbrot runner, in C. * * For the moment *all* logic is in mandel-core.s, I'm just * trying to get this to run within a cc65 environment. * Eventually just the inner loop fun will live in there. */ #include #include #include "mandel.h" void main(void) { mandel_start(); }