├── LICENSE ├── Makefile ├── README.md ├── include ├── stdint.h └── stdlib.h └── src ├── htfi.c ├── main.c ├── rv8.lds ├── rv8.s ├── semihost.c ├── spike.lds └── spike.s /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/README.md -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /src/htfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/src/htfi.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/src/main.c -------------------------------------------------------------------------------- /src/rv8.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/src/rv8.lds -------------------------------------------------------------------------------- /src/rv8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/src/rv8.s -------------------------------------------------------------------------------- /src/semihost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/src/semihost.c -------------------------------------------------------------------------------- /src/spike.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/src/spike.lds -------------------------------------------------------------------------------- /src/spike.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichtso/riscv-llvm-templates/HEAD/src/spike.s --------------------------------------------------------------------------------