File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ A minimalist RISC-V system emulator capable of running Linux the kernel and corr
99- UART: 8250/16550
1010- PLIC (platform-level interrupt controller): 32 interrupts, no priority
1111- Standard SBI, with the timer extension
12- - VirtIO: virtio-blk acquires disk image from the host, and virtio-net is mapped as TAP interface
12+ - VirtIO:
13+ - virtio-net: Mapped with TAP interface to the host
14+ - virtio-blk: Acquires disk image from the host to the guest
15+ - virtio-gpu: Currently supports 2D rendering mode with SDL as front-end
1316
1417## Prerequisites
1518
@@ -37,6 +40,18 @@ For macOS, use the following command:
3740$ brew install e2fsprogs
3841```
3942
43+ ### SDL2 Installation
44+
45+ ```
46+ sudo apt install libsdl2-dev libsdl2-2.0-0 libsdl2-image-dev libsdl2-image-2.0-0
47+ ```
48+
49+ ### Pixman Installation
50+
51+ ```
52+ sudo apt install libpixman-1-dev
53+ ```
54+
4055## Build and Run
4156
4257Build the emulator:
You can’t perform that action at this time.
0 commit comments