├── .gitignore ├── LICENSE ├── Makefile ├── README └── src ├── Makefile ├── io_ftdi.c ├── io_ftdi.h └── xvcd.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmbinc/xvcd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmbinc/xvcd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | O=$(shell pwd)/bin 2 | 3 | all: 4 | $(MAKE) -C src O=$(O) 5 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmbinc/xvcd/HEAD/README -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmbinc/xvcd/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/io_ftdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmbinc/xvcd/HEAD/src/io_ftdi.c -------------------------------------------------------------------------------- /src/io_ftdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmbinc/xvcd/HEAD/src/io_ftdi.h -------------------------------------------------------------------------------- /src/xvcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmbinc/xvcd/HEAD/src/xvcd.c --------------------------------------------------------------------------------