├── .gitignore ├── CMakeLists.txt ├── NEWS ├── README.md ├── TODO ├── c64_screenshot.png ├── data ├── 16x16font.png ├── 8x14font.png ├── 8x8font.png ├── c64.png ├── c64_16x16.png └── font8x8.png ├── flake.lock ├── flake.nix ├── generate-fonts.sh ├── include └── SDL_tty │ ├── SDL_fnt.h │ └── SDL_tty.h ├── sdl_tty-config.cmake.in └── src ├── SDL_fnt.c ├── SDL_tty.c ├── c64lookalike.c ├── font8x8.h └── fontdump.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *~ 3 | /build* 4 | /old 5 | /result 6 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/TODO -------------------------------------------------------------------------------- /c64_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/c64_screenshot.png -------------------------------------------------------------------------------- /data/16x16font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/data/16x16font.png -------------------------------------------------------------------------------- /data/8x14font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/data/8x14font.png -------------------------------------------------------------------------------- /data/8x8font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/data/8x8font.png -------------------------------------------------------------------------------- /data/c64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/data/c64.png -------------------------------------------------------------------------------- /data/c64_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/data/c64_16x16.png -------------------------------------------------------------------------------- /data/font8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/data/font8x8.png -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/flake.nix -------------------------------------------------------------------------------- /generate-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/generate-fonts.sh -------------------------------------------------------------------------------- /include/SDL_tty/SDL_fnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/include/SDL_tty/SDL_fnt.h -------------------------------------------------------------------------------- /include/SDL_tty/SDL_tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/include/SDL_tty/SDL_tty.h -------------------------------------------------------------------------------- /sdl_tty-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/sdl_tty-config.cmake.in -------------------------------------------------------------------------------- /src/SDL_fnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/src/SDL_fnt.c -------------------------------------------------------------------------------- /src/SDL_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/src/SDL_tty.c -------------------------------------------------------------------------------- /src/c64lookalike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/src/c64lookalike.c -------------------------------------------------------------------------------- /src/font8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/src/font8x8.h -------------------------------------------------------------------------------- /src/fontdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grumbel/SDL_tty/HEAD/src/fontdump.c --------------------------------------------------------------------------------