forth-riscv

My forth
git clone git://git.electrosoup.com/forth-riscv
Log | Files | Refs

run (224B)


      1 #!/usr/bin/env bash
      2 
      3 exec qemu-system-riscv32 \
      4 	-gdb tcp::1234 \
      5 	-nographic \
      6 	-bios none \
      7 	-machine virt \
      8 	-kernel bin/forth.elf \
      9 	-device virtio-blk-device,drive=drive0 \
     10 	-drive file=disk0.qcow2,format=raw,id=drive0