This commit is contained in:
Yifan Wu 2022-09-02 02:54:55 -07:00
parent 25f4e37168
commit 25a398adc2
6 changed files with 66 additions and 52 deletions

View file

@ -4,6 +4,8 @@ pub mod chardev;
pub mod gpu;
#[cfg(feature = "board_qemu")]
pub mod input;
#[cfg(feature = "board_qemu")]
pub mod bus;
pub mod plic;
pub use block::BLOCK_DEVICE;
#[cfg(feature = "board_qemu")]
@ -12,3 +14,5 @@ pub use chardev::UART;
pub use gpu::*;
#[cfg(feature = "board_qemu")]
pub use input::*;
#[cfg(feature = "board_qemu")]
pub use bus::*;