├── .gitignore ├── README.md ├── base.py ├── firmware ├── Makefile ├── clock.c ├── dhry.h ├── dhry_1.c ├── dhry_2.c ├── isr.c ├── linker.ld └── main.c ├── ios.py ├── json2dts.py └── zephyr ├── .config ├── FILES.TXT ├── litex_vexriscv.dts └── riscv32-litex-vexriscv.dtsi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/README.md -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/base.py -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/Makefile -------------------------------------------------------------------------------- /firmware/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/clock.c -------------------------------------------------------------------------------- /firmware/dhry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/dhry.h -------------------------------------------------------------------------------- /firmware/dhry_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/dhry_1.c -------------------------------------------------------------------------------- /firmware/dhry_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/dhry_2.c -------------------------------------------------------------------------------- /firmware/isr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/isr.c -------------------------------------------------------------------------------- /firmware/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/linker.ld -------------------------------------------------------------------------------- /firmware/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/firmware/main.c -------------------------------------------------------------------------------- /ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/ios.py -------------------------------------------------------------------------------- /json2dts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/json2dts.py -------------------------------------------------------------------------------- /zephyr/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/zephyr/.config -------------------------------------------------------------------------------- /zephyr/FILES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/zephyr/FILES.TXT -------------------------------------------------------------------------------- /zephyr/litex_vexriscv.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/zephyr/litex_vexriscv.dts -------------------------------------------------------------------------------- /zephyr/riscv32-litex-vexriscv.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghent360/riscvOnColorlight-5A-75B/HEAD/zephyr/riscv32-litex-vexriscv.dtsi --------------------------------------------------------------------------------