├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── Makefile64 ├── README.md ├── addrs.h ├── app.lds ├── app64.lds ├── coremark-port ├── core_portme.c ├── core_portme.h ├── cvt.c └── ee_printf.c ├── crt0.S ├── crt0.c ├── elf.c ├── elf.h ├── htif.c ├── htif.h ├── init.S ├── kernel.c ├── kernel.lds ├── kernel64.lds ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/Makefile64 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/README.md -------------------------------------------------------------------------------- /addrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/addrs.h -------------------------------------------------------------------------------- /app.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/app.lds -------------------------------------------------------------------------------- /app64.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/app64.lds -------------------------------------------------------------------------------- /coremark-port/core_portme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/coremark-port/core_portme.c -------------------------------------------------------------------------------- /coremark-port/core_portme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/coremark-port/core_portme.h -------------------------------------------------------------------------------- /coremark-port/cvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/coremark-port/cvt.c -------------------------------------------------------------------------------- /coremark-port/ee_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/coremark-port/ee_printf.c -------------------------------------------------------------------------------- /crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/crt0.S -------------------------------------------------------------------------------- /crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/crt0.c -------------------------------------------------------------------------------- /elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/elf.c -------------------------------------------------------------------------------- /elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/elf.h -------------------------------------------------------------------------------- /htif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/htif.c -------------------------------------------------------------------------------- /htif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/htif.h -------------------------------------------------------------------------------- /init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/init.S -------------------------------------------------------------------------------- /kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/kernel.c -------------------------------------------------------------------------------- /kernel.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/kernel.lds -------------------------------------------------------------------------------- /kernel64.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/kernel64.lds -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lowRISC/epic-c-example/HEAD/util.h --------------------------------------------------------------------------------