CurtaSim/CurtaSim/curta.c

27 lines
347 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;
printInstructions();
initUI();
while (!timeToQuit) {
timeToQuit= processNextEvent();
}
shutdownUI();
return 0;
}