Blob
1 // uart_qemu_virt.cc4 #include <hw.h>5 #include <uart.h>8 namespace Board9 {10 namespace Uart11 {14 namespace15 {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 Uart39 } // namespace Board