summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/include/pio.h
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2017-06-02 16:22:26 +0200
committerNao Pross <naopross@thearcway.org>2017-06-02 16:22:26 +0200
commit4a7f45ee28ac0799ba1ca93fd1683f7858efc54a (patch)
tree831487d939e15ba4c2fdb16b08240f1aeda843e5 /sw/z80/kernel/include/pio.h
parentnew file coding_rules.txt to have a consistent coding style (diff)
downloadz80uPC-4a7f45ee28ac0799ba1ca93fd1683f7858efc54a.tar.gz
z80uPC-4a7f45ee28ac0799ba1ca93fd1683f7858efc54a.zip
add serial interface and a few std library functions
changes in usart: - new functions to setup the serial comunication settings such as baudrate, parity and stop bits - init function with most common values - transmit and receive functions each with a wrapper to send data blocks changes in libc: - new file stdio.c with basic implementation of putch, printf still a prototype - new file string.c with memcpy() function
Diffstat (limited to '')
-rw-r--r--sw/z80/kernel/include/pio.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/sw/z80/kernel/include/pio.h b/sw/z80/kernel/include/pio.h
new file mode 100644
index 0000000..8d72ab0
--- /dev/null
+++ b/sw/z80/kernel/include/pio.h
@@ -0,0 +1,18 @@
+#ifndef __PIO_H__
+#define __PIO_H__
+
+#define PIO_A 0
+#define PIO_B 1
+
+
+void pio_data(int port, uint8_t data);
+void pio_command(int port, uint8_t cmd);
+
+uint8_t pio_read_data(int port);
+
+inline int pio_read_pin(int port, uint8_t pin);
+inline void pio_write_pin(int port, uint8_t pin);
+
+// TODO: implement mode (in/out/both) and interrupt vector
+
+#endif // __PIO_H__