Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
lupyuen committed Jan 20, 2024
1 parent b893255 commit 5d8415c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion temu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 5d8415c

Please sign in to comment.