├── .gitattributes ├── LICENSE ├── README.md └── tot6502.sv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krikzz/tot6502/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krikzz/tot6502/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tot6502 2 | cycle accurate 6502 cpu core used in NES (without decimal mode) 3 | -------------------------------------------------------------------------------- /tot6502.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krikzz/tot6502/HEAD/tot6502.sv --------------------------------------------------------------------------------