Blob


1 // uart_qemu_virt.cc
4 #include <hw.h>
5 #include <uart.h>
8 namespace Board
9 {
10 namespace Uart
11 {
14 namespace
15 {
17 // constexpr uintptr_t UART_BASE = 0xffffffffc9000000ULL;
19 }
22 void initialize()
23 {
24 }
27 void send(uint8_t /*value*/)
28 {
29 }
32 uint8_t recv()
33 {
34 return 0;
35 }
38 } // namespace Uart
39 } // namespace Board