remove some of those old print statements
This commit is contained in:
parent
a65ba1e487
commit
4d9c24c9b4
3 changed files with 1 additions and 6 deletions
|
@ -2,4 +2,4 @@
|
|||
|
||||
storage_device="${1}"
|
||||
|
||||
qemu-system-riscv32 -machine virt -bios none -drive if=none,format=raw,file="${storage_device}",id=disk1 -device virtio-blk-device,drive=disk1 -display gtk -device virtio-gpu-device -device virtio-keyboard-device -serial stdio -m 10M -device loader,cpu-num=0,file=target/riscv32imac-unknown-none-elf/release/lbos -monitor telnet:127.0.0.1:1235,server,nowait -d guest_errors,unimp
|
||||
qemu-system-riscv32 -machine virt -bios none -drive if=none,format=raw,file="${storage_device}",id=disk1 -device virtio-blk-device,drive=disk1 -display sdl -device virtio-gpu-device -device virtio-keyboard-device -serial stdio -m 10M -device loader,cpu-num=0,file=target/riscv32imac-unknown-none-elf/release/lbos -monitor telnet:127.0.0.1:1235,server,nowait -d guest_errors,unimp
|
|
@ -363,7 +363,6 @@ const KEYMAP_ASCII: &[(LinuxKeycode, u8)] = &[
|
|||
(LinuxKeycode::Semicolon, b';'),
|
||||
(LinuxKeycode::Apostrophe, b'\''),
|
||||
(LinuxKeycode::Grave, b'`'),
|
||||
(LinuxKeycode::LeftShift, b'/'),
|
||||
(LinuxKeycode::Backslash, b'\\'),
|
||||
(LinuxKeycode::Z, b'z'),
|
||||
(LinuxKeycode::X, b'x'),
|
||||
|
|
|
@ -224,10 +224,6 @@ pub fn handle_interrupt(interrupt: u32, tc: &mut TrafficControl) {
|
|||
}
|
||||
}
|
||||
VirtIoDevice::InputDevice(inputdev) => {
|
||||
{
|
||||
let uart = crate::uart::UART::new(0x1000_0000);
|
||||
uart.putstr("input device interrupt\n");
|
||||
}
|
||||
inputdev.pending(tc);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue