CurtaSim/curta.c
2012-07-20 10:43:44 -05:00

24 lines
312 B
C

//
// Author: Jeremy Rand
// Date: July 20, 2012
//
// This is the main entry point for the Curta emulator.
//
#include "curtaUI.h"
int main(void)
{
bool timeToQuit = false;
initUI();
while (!timeToQuit) {
timeToQuit= processNextEvent();
}
shutdownUI();
return 0;
}