Initial framework for C code.
[pdp11-memory-test] / pdp11.h
diff --git a/pdp11.h b/pdp11.h
new file mode 100644 (file)
index 0000000..1e55595
--- /dev/null
+++ b/pdp11.h
@@ -0,0 +1,10 @@
+#ifndef PDP11_STDIO_H
+#define PDP11_STDIO_H
+
+#include <stdint.h>
+
+void putch(uint16_t);
+uint16_t getch(void);
+void wait(uint16_t);
+
+#endif /* PDP11_STDIO_H */