From 26b68ceb8ec5ccad999a436c7d594d1df3398f04 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 7 Sep 2017 14:27:14 +0200 Subject: z80_test cleanup and makefile corrections --- sw/z80_test/main.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'sw/z80_test/main.c') diff --git a/sw/z80_test/main.c b/sw/z80_test/main.c index a90cd92..d2e1d8e 100644 --- a/sw/z80_test/main.c +++ b/sw/z80_test/main.c @@ -2,6 +2,10 @@ void main(void) { - usart_init(USART_BAUDRATE_9600, USART_PARITY_EVEN, USART_STOP_BITS_1); - usart_write("Hello, World!", 13); + 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); + } } -- cgit v1.2.1