Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 2.35 KB

File metadata and controls

54 lines (37 loc) · 2.35 KB

Notes

Notes, links and hints that helped me to develop the project.

QEMU

Syscalls / ecall

Devices / drivers

UART / serial / chardev

  • RISC-V NS16550A UART driver
  • Chardev device options
  • Try chardev: qemu-system-riscv64 -nographic -M virt -cpu rv64 -m 4G -smp $(QEMU_N_HARTS) -serial pty -bios opensbi/output/path/fw_payload.elf -device virtio-serial-device -chardev pty,id=serial3 -device virtconsole,chardev=serial3 -S -gdb tcp:localhost:9000

GoldfishRTC

Linker

Make

Minicom

  • Connect via socket: minicom -D unix\#/tmp/xxx

C

Assembly