kernel/.cargo/config.toml

14 lines
229 B
TOML
Raw Normal View History

2024-05-13 18:31:37 -04:00
# .cargo/config.toml
[build]
target = "riscv32imac-unknown-none-elf"
[target.riscv32imac-unknown-none-elf]
runner = """ qemu-system-riscv32
-cpu rv32
-machine virt
-m 150M
-s
-nographic
2024-05-13 23:07:46 -04:00
-serial mon:stdio
2024-05-13 18:31:37 -04:00
-bios """