From eb169ea5a89909b90794e0388f89d6d372754e46 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Thu, 5 Oct 2017 16:09:59 +0200 Subject: Move test units to z80/tests, and drivers are now statically linked Makefiles for the test units were getting messier, so now drivers (that need to be tested) are statically compiled in their own folder under z80/drivers. The kernel makefile and is now broken since everything has been moved. --- sw/z80_tests/usart/main.c | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 sw/z80_tests/usart/main.c (limited to 'sw/z80_tests/usart/main.c') 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); - } -} -- cgit v1.2.1