├── .gitignore ├── README.md └── soc ├── .gitignore ├── Makefile ├── attosoc.v ├── debug_insert.py ├── firmware.hex ├── versa.lpf ├── versa5g_openocd.cfg └── wrapper.v /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/README.md -------------------------------------------------------------------------------- /soc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/.gitignore -------------------------------------------------------------------------------- /soc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/Makefile -------------------------------------------------------------------------------- /soc/attosoc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/attosoc.v -------------------------------------------------------------------------------- /soc/debug_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/debug_insert.py -------------------------------------------------------------------------------- /soc/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/firmware.hex -------------------------------------------------------------------------------- /soc/versa.lpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/versa.lpf -------------------------------------------------------------------------------- /soc/versa5g_openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/versa5g_openocd.cfg -------------------------------------------------------------------------------- /soc/wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatecat/hrt/HEAD/soc/wrapper.v --------------------------------------------------------------------------------