AArch64 EL2 hypervisor for QEMU virt that boots at EL2
1

Configure Feed

Select the types of activity you want to include in your feed.

ariel / include / hv / uart.h
258 B 13 lines
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); 11bool uart_getc_nonblocking(char *out); 12 13#endif