├── .github └── workflows │ └── cmake-multi-platform.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── _config.yml ├── pybindings ├── Makefile ├── image.bin ├── test.py └── tms9918.cpp ├── res ├── mcdemo.gif ├── mode1demo.gif ├── mode2demo.gif └── textdemo.gif └── src ├── CMakeLists.txt ├── vrEmuTms9918.c ├── vrEmuTms9918.h ├── vrEmuTms9918Util.c └── vrEmuTms9918Util.h /.github/workflows/cmake-multi-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/.github/workflows/cmake-multi-platform.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/_config.yml -------------------------------------------------------------------------------- /pybindings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/pybindings/Makefile -------------------------------------------------------------------------------- /pybindings/image.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/pybindings/image.bin -------------------------------------------------------------------------------- /pybindings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/pybindings/test.py -------------------------------------------------------------------------------- /pybindings/tms9918.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/pybindings/tms9918.cpp -------------------------------------------------------------------------------- /res/mcdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/res/mcdemo.gif -------------------------------------------------------------------------------- /res/mode1demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/res/mode1demo.gif -------------------------------------------------------------------------------- /res/mode2demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/res/mode2demo.gif -------------------------------------------------------------------------------- /res/textdemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/res/textdemo.gif -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/vrEmuTms9918.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/src/vrEmuTms9918.c -------------------------------------------------------------------------------- /src/vrEmuTms9918.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/src/vrEmuTms9918.h -------------------------------------------------------------------------------- /src/vrEmuTms9918Util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/src/vrEmuTms9918Util.c -------------------------------------------------------------------------------- /src/vrEmuTms9918Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/visrealm/vrEmuTms9918/HEAD/src/vrEmuTms9918Util.h --------------------------------------------------------------------------------