From 5d8415c1d4b472961948f9ace20c29e529ac5c71 Mon Sep 17 00:00:00 2001 From: Lee Lup Yuen Date: Sat, 20 Jan 2024 09:15:20 +0800 Subject: [PATCH] Clean up --- README.md | 6 +++++- temu.c | 1 - 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6b4313..811ac09 100644 --- a/README.md +++ b/README.md @@ -122,9 +122,13 @@ Up Next: Emulate UART Interrupts for Console Input TODO +[Set VirtIO IRQ to UART3 IRQ](https://github.com/lupyuen/ox64-tinyemu/commit/6841e7fe90f2826b54751e4fff2fe9ab3872bd99) + [Disable Console Resize event because it crashes VM Guest at startup](https://github.com/lupyuen/ox64-tinyemu/commit/dc869fe6a9a726d413e8a83c56cf40f271c6fe3c) -[We always allow write data](https://github.com/lupyuen/ox64-tinyemu/commit/93cd86a7311986e5063cb0c8e368f89cdae73e27) +[We always allow VirtIO Write Data](https://github.com/lupyuen/ox64-tinyemu/commit/93cd86a7311986e5063cb0c8e368f89cdae73e27) + +[Always ready for VirtIO Writes](https://github.com/lupyuen/ox64-tinyemu/commit/b893255b42a8aaa443f7264dc06537b96326b414) # Emulate OpenSBI for System Timer diff --git a/temu.c b/temu.c index f9e33b8..9a3952e 100644 --- a/temu.c +++ b/temu.c @@ -595,7 +595,6 @@ void virt_machine_run(VirtMachine *m) len = min_int(len, sizeof(buf)); ret = m->console->read_data(m->console->opaque, buf, len); if (ret > 0) { - printf("[%c]", buf[0]); //// virtio_console_write_data(m->console_dev, buf, ret); } }