├── .gitignore ├── README.md ├── example ├── iconc.png ├── makefile └── src │ ├── asm │ ├── debug.inc │ ├── host.inc │ └── usbserial.asm │ ├── main.c │ ├── usbserial.c │ └── usbserial.h └── src ├── asm ├── debug.inc ├── host.inc └── usbserial.asm ├── usbserial.c └── usbserial.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/README.md -------------------------------------------------------------------------------- /example/iconc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/iconc.png -------------------------------------------------------------------------------- /example/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/makefile -------------------------------------------------------------------------------- /example/src/asm/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/src/asm/debug.inc -------------------------------------------------------------------------------- /example/src/asm/host.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/src/asm/host.inc -------------------------------------------------------------------------------- /example/src/asm/usbserial.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/src/asm/usbserial.asm -------------------------------------------------------------------------------- /example/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/src/main.c -------------------------------------------------------------------------------- /example/src/usbserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/src/usbserial.c -------------------------------------------------------------------------------- /example/src/usbserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/example/src/usbserial.h -------------------------------------------------------------------------------- /src/asm/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/src/asm/debug.inc -------------------------------------------------------------------------------- /src/asm/host.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/src/asm/host.inc -------------------------------------------------------------------------------- /src/asm/usbserial.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/src/asm/usbserial.asm -------------------------------------------------------------------------------- /src/usbserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/src/usbserial.c -------------------------------------------------------------------------------- /src/usbserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commandblockguy/CE-serial/HEAD/src/usbserial.h --------------------------------------------------------------------------------