avr: initial commit
[z80.git] / avr / cpm.h
diff --git a/avr/cpm.h b/avr/cpm.h
new file mode 100644 (file)
index 0000000..9568e55
--- /dev/null
+++ b/avr/cpm.h
@@ -0,0 +1,10 @@
+/* CP/M support header */
+#ifndef _CPM_H_
+#define _CPM_H_
+
+#include <stdint.h>
+
+uint8_t cpm_disk_read(void);
+void    cpm_disk_write(uint8_t);
+
+#endif /* _CPM_H_ */