├── .gitignore ├── CPU1.lhs ├── CPU2.lhs ├── CPU2Diagram.svg ├── LICENSE ├── combinational.svg ├── cpu1.svg ├── cpu1.v ├── format.sh ├── register.svg └── stage.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CPU1.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/CPU1.lhs -------------------------------------------------------------------------------- /CPU2.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/CPU2.lhs -------------------------------------------------------------------------------- /CPU2Diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/CPU2Diagram.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/LICENSE -------------------------------------------------------------------------------- /combinational.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/combinational.svg -------------------------------------------------------------------------------- /cpu1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/cpu1.svg -------------------------------------------------------------------------------- /cpu1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/cpu1.v -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/format.sh -------------------------------------------------------------------------------- /register.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/register.svg -------------------------------------------------------------------------------- /stage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyager/CPU/HEAD/stage.svg --------------------------------------------------------------------------------