├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── wokwi.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── info.yaml ├── requirements.txt ├── src ├── .gitignore ├── base.sdc ├── config.tcl ├── pdm.v ├── test.mk ├── user_module_341193419111006803.v └── user_module_341193419111006803_tb.v ├── template ├── config.tcl └── scan_wrapper.v └── view.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/wokwi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/.github/workflows/wokwi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | runs/ 2 | src/ID -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/README.md -------------------------------------------------------------------------------- /info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/info.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gdstk 2 | gdspy 3 | pyclipper 4 | mapbox_earcut -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/base.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/src/base.sdc -------------------------------------------------------------------------------- /src/config.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/src/config.tcl -------------------------------------------------------------------------------- /src/pdm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/src/pdm.v -------------------------------------------------------------------------------- /src/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/src/test.mk -------------------------------------------------------------------------------- /src/user_module_341193419111006803.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/src/user_module_341193419111006803.v -------------------------------------------------------------------------------- /src/user_module_341193419111006803_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/src/user_module_341193419111006803_tb.v -------------------------------------------------------------------------------- /template/config.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/template/config.tcl -------------------------------------------------------------------------------- /template/scan_wrapper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/template/scan_wrapper.v -------------------------------------------------------------------------------- /view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommythorn/tinytapeout-4-bit-cpu/HEAD/view.py --------------------------------------------------------------------------------