From 8a56c7a95e662862cfe78b834ccb091e95d5372f Mon Sep 17 00:00:00 2001 From: J08nY Date: Mon, 25 Nov 2019 17:45:35 +0100 Subject: Add libtommath, HOST build, and a simple PRNG. --- pyecsca/codegen/hal/host/uart.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyecsca/codegen/hal/host/uart.h (limited to 'pyecsca/codegen/hal/host/uart.h') diff --git a/pyecsca/codegen/hal/host/uart.h b/pyecsca/codegen/hal/host/uart.h new file mode 100644 index 0000000..d6063bc --- /dev/null +++ b/pyecsca/codegen/hal/host/uart.h @@ -0,0 +1,13 @@ +#ifndef UART_H_ +#define UART_H_ + +#include + + +void init_uart0(void); + +char input_ch_0(void); + +void output_ch_0(char data); + +#endif //UART_H_ \ No newline at end of file -- cgit v1.3.1