AArch64 EL2 hypervisor for QEMU virt that boots at EL2
1#ifndef HV_UART_H
2#define HV_UART_H
3
4#include "hv/types.h"
5
6void uart_init(void);
7void uart_putc(char c);
8void uart_puts(const char *s);
9void uart_put_hex64(uint64_t value);
10void uart_put_dec64(uint64_t value);
11void uart_put_label_hex64(const char *label, uint64_t value);
12bool uart_getc_nonblocking(char *out);
13
14#endif