summaryrefslogtreecommitdiffstats
path: root/sw/z80_tests/usart/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sw/z80_tests/usart/main.c')
-rw-r--r--sw/z80_tests/usart/main.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/sw/z80_tests/usart/main.c b/sw/z80_tests/usart/main.c
deleted file mode 100644
index d2e1d8e..0000000
--- a/sw/z80_tests/usart/main.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "usart.h"
-
-void main(void)
-{
- usart_init(USART_BAUDRATE_1200, USART_PARITY_EVEN, USART_STOP_BITS_1);
- usart_write("Hello, World!\n", 13);
-
- while(1) {
- usart_write("done\n", 5);
- }
-}