aboutsummaryrefslogtreecommitdiffhomepage
path: root/pyecsca/codegen/hal/host/uart.c
blob: 04104623063ac3ce0f5e3a73f4e0b71188a855d6 (plain) (blame)
1
2
3
4
5
6
7
#include "uart.h"

void init_uart0(void) {}

int input_ch_0(void) { return getchar(); }

void output_ch_0(char data) { putchar(data); }