add net support

This commit is contained in:
yufeng 2023-02-06 19:21:43 +08:00
parent 680f7fed26
commit 9355acf903
12 changed files with 354 additions and 0 deletions

View file

@ -3,6 +3,7 @@ pub mod bus;
pub mod chardev;
pub mod gpu;
pub mod input;
pub mod net;
pub mod plic;
pub use block::BLOCK_DEVICE;
@ -10,3 +11,4 @@ pub use bus::*;
pub use chardev::UART;
pub use gpu::*;
pub use input::*;
pub use net::*;