diff options
| author | J08nY | 2019-11-25 17:45:35 +0100 |
|---|---|---|
| committer | J08nY | 2019-11-25 17:45:35 +0100 |
| commit | 8a56c7a95e662862cfe78b834ccb091e95d5372f (patch) | |
| tree | 1fd57480b7fc681f00c0bfb6c0e5cfea86762f87 /pyecsca/codegen/hal/host/uart.h | |
| parent | c8d0bff46001bd5636825c5b0bb4c896cb34a4e6 (diff) | |
| download | pyecsca-codegen-8a56c7a95e662862cfe78b834ccb091e95d5372f.tar.gz pyecsca-codegen-8a56c7a95e662862cfe78b834ccb091e95d5372f.tar.zst pyecsca-codegen-8a56c7a95e662862cfe78b834ccb091e95d5372f.zip | |
Add libtommath, HOST build, and a simple PRNG.
Diffstat (limited to 'pyecsca/codegen/hal/host/uart.h')
| -rw-r--r-- | pyecsca/codegen/hal/host/uart.h | 13 |
1 files changed, 13 insertions, 0 deletions
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 <stdio.h> + + +void init_uart0(void); + +char input_ch_0(void); + +void output_ch_0(char data); + +#endif //UART_H_
\ No newline at end of file |
