CurtaSim/CurtaSim/curtaUI.h

20 lines
315 B
C
Raw Permalink Normal View History

2012-07-20 15:43:44 +00:00
//
// Author: Jeremy Rand
// Date: July 20, 2012
//
// This is the interface for the Curta emulator UI.
//
2012-07-29 03:50:05 +00:00
#include <stdbool.h>
2012-07-20 15:43:44 +00:00
#ifndef _CURTAUI_H
#define _CURTAUI_H
extern void printInstructions(void);
2012-07-20 15:43:44 +00:00
extern void initUI(void);
extern void shutdownUI(void);
extern bool processNextEvent(void);
#endif