Blob


1 // uart_qemu_virt.cc
4 #include <hw.h>
5 #include <uart.h>
8 namespace Board {
9 namespace Uart {
12 namespace {
14 // constexpr uintptr_t UART_BASE = 0xffffffffc9000000ULL;
16 } // anonymous namespace
19 void initialize()
20 {
21 }
24 void send(uint8_t /*value*/)
25 {
26 }
29 uint8_t recv()
30 {
31 return 0;
32 }
35 } // namespace Uart
36 } // namespace Board