├── .gitignore ├── LICENSE ├── bit-sim.gif ├── bit-state.png ├── bit-wave.png ├── bit.c ├── bit.fth ├── bit.hex ├── bit.inc ├── bit.vhd ├── makefile ├── peripherals.vhd ├── readme.md ├── signals.tcl ├── tb.cfg ├── tb.vhd ├── test.fth ├── top.ucf ├── top.vhd ├── uart.vhd └── util.vhd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/LICENSE -------------------------------------------------------------------------------- /bit-sim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit-sim.gif -------------------------------------------------------------------------------- /bit-state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit-state.png -------------------------------------------------------------------------------- /bit-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit-wave.png -------------------------------------------------------------------------------- /bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit.c -------------------------------------------------------------------------------- /bit.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit.fth -------------------------------------------------------------------------------- /bit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit.hex -------------------------------------------------------------------------------- /bit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit.inc -------------------------------------------------------------------------------- /bit.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/bit.vhd -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/makefile -------------------------------------------------------------------------------- /peripherals.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/peripherals.vhd -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/readme.md -------------------------------------------------------------------------------- /signals.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/signals.tcl -------------------------------------------------------------------------------- /tb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/tb.cfg -------------------------------------------------------------------------------- /tb.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/tb.vhd -------------------------------------------------------------------------------- /test.fth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/test.fth -------------------------------------------------------------------------------- /top.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/top.ucf -------------------------------------------------------------------------------- /top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/top.vhd -------------------------------------------------------------------------------- /uart.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/uart.vhd -------------------------------------------------------------------------------- /util.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/howerj/bit-serial/HEAD/util.vhd --------------------------------------------------------------------------------