avr: initial commit
[z80.git] / avr / cpm.h
1 /* CP/M support header */
2 #ifndef _CPM_H_
3 #define _CPM_H_
4
5 #include <stdint.h>
6
7 uint8_t cpm_disk_read(void);
8 void    cpm_disk_write(uint8_t);
9
10 #endif /* _CPM_H_ */