├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── banner.png ├── camera.png ├── crlock.patch ├── demo.gif ├── doc └── gbcc.6.scd ├── flake.lock ├── flake.nix ├── icons ├── icon-128x128.png ├── icon-16x16.png ├── icon-256x256.png ├── icon-32x32.png ├── icon-48x48.png └── icon-64x64.png ├── meson.build ├── meson_options.txt ├── print.wav ├── resources ├── TCAGBD.pdf ├── ascii.txt ├── colours │ ├── conversion.txt │ ├── pikachu-3x3.xcf │ └── pikachu-6x6.xcf ├── gb-printer.txt ├── ioreg.txt └── pandocs.htm ├── roms ├── colour_test │ ├── Makefile │ ├── colour_test.rgbasm │ ├── font.rgbasm │ └── hardware.inc ├── font.png ├── font.xcf ├── gb2hex.py ├── hex2gb.py └── intro │ ├── Makefile │ ├── bounce.rgbasm │ ├── font.rgbasm │ ├── hardware.inc │ ├── intro.rgbasm │ ├── notes.inc │ └── palettes.rgbasm ├── shaders ├── colour-correct.frag ├── dotmatrix.frag ├── flipped.vert ├── frameblend.frag ├── nothing.frag ├── subpixel.frag └── vert.vert ├── src ├── apu.c ├── apu.h ├── args.c ├── args.h ├── audio.c ├── audio.h ├── audio_platform │ ├── null.c │ ├── openal.c │ ├── openal.h │ ├── opensl.c │ └── opensl.h ├── bit_utils.c ├── bit_utils.h ├── camera.c ├── camera.h ├── camera_platform │ ├── null.c │ ├── null.h │ ├── v4l2.c │ └── v4l2.h ├── cheats.c ├── cheats.h ├── colour.c ├── colour.h ├── config.c ├── config.h ├── constants.h ├── core.c ├── core.h ├── cpu.c ├── cpu.h ├── debug.c ├── debug.h ├── ext-session-lock-v1-client-protocol.c ├── ext-session-lock-v1-client-protocol.h ├── ext-session-lock-v1.xml ├── fontmap.c ├── fontmap.h ├── gbcc.c ├── gbcc.h ├── hdma.c ├── hdma.h ├── headless │ └── main.c ├── input.c ├── input.h ├── mbc.c ├── mbc.h ├── memory.c ├── memory.h ├── menu.c ├── menu.h ├── nelem.h ├── ops.c ├── ops.h ├── palettes.c ├── palettes.h ├── paths.c ├── paths.h ├── ppu.c ├── ppu.h ├── printer.c ├── printer.h ├── printer_platform.h ├── printer_platform │ └── terminal.c ├── save.c ├── save.h ├── screenshot.c ├── screenshot.h ├── stb_image.h ├── time_diff.c ├── time_diff.h ├── vram_window.c ├── vram_window.h ├── wav.c ├── wav.h ├── wayland │ └── main.c ├── window.c └── window.h ├── testing ├── .gitignore ├── Makefile ├── bin2screen.c ├── fit.py └── romgen.c ├── tileset.png ├── video.mp4 └── windows ├── icon.ico ├── icon.rc ├── license_additions.txt ├── msys2.sh └── settings.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | resources/* linguist-documentation 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/banner.png -------------------------------------------------------------------------------- /camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/camera.png -------------------------------------------------------------------------------- /crlock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/crlock.patch -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/demo.gif -------------------------------------------------------------------------------- /doc/gbcc.6.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/doc/gbcc.6.scd -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/flake.nix -------------------------------------------------------------------------------- /icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/icons/icon-128x128.png -------------------------------------------------------------------------------- /icons/icon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/icons/icon-16x16.png -------------------------------------------------------------------------------- /icons/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/icons/icon-256x256.png -------------------------------------------------------------------------------- /icons/icon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/icons/icon-32x32.png -------------------------------------------------------------------------------- /icons/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/icons/icon-48x48.png -------------------------------------------------------------------------------- /icons/icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/icons/icon-64x64.png -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/meson_options.txt -------------------------------------------------------------------------------- /print.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/print.wav -------------------------------------------------------------------------------- /resources/TCAGBD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/TCAGBD.pdf -------------------------------------------------------------------------------- /resources/ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/ascii.txt -------------------------------------------------------------------------------- /resources/colours/conversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/colours/conversion.txt -------------------------------------------------------------------------------- /resources/colours/pikachu-3x3.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/colours/pikachu-3x3.xcf -------------------------------------------------------------------------------- /resources/colours/pikachu-6x6.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/colours/pikachu-6x6.xcf -------------------------------------------------------------------------------- /resources/gb-printer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/gb-printer.txt -------------------------------------------------------------------------------- /resources/ioreg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/ioreg.txt -------------------------------------------------------------------------------- /resources/pandocs.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/resources/pandocs.htm -------------------------------------------------------------------------------- /roms/colour_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/colour_test/Makefile -------------------------------------------------------------------------------- /roms/colour_test/colour_test.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/colour_test/colour_test.rgbasm -------------------------------------------------------------------------------- /roms/colour_test/font.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/colour_test/font.rgbasm -------------------------------------------------------------------------------- /roms/colour_test/hardware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/colour_test/hardware.inc -------------------------------------------------------------------------------- /roms/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/font.png -------------------------------------------------------------------------------- /roms/font.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/font.xcf -------------------------------------------------------------------------------- /roms/gb2hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/gb2hex.py -------------------------------------------------------------------------------- /roms/hex2gb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/hex2gb.py -------------------------------------------------------------------------------- /roms/intro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/intro/Makefile -------------------------------------------------------------------------------- /roms/intro/bounce.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/intro/bounce.rgbasm -------------------------------------------------------------------------------- /roms/intro/font.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/intro/font.rgbasm -------------------------------------------------------------------------------- /roms/intro/hardware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/intro/hardware.inc -------------------------------------------------------------------------------- /roms/intro/intro.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/intro/intro.rgbasm -------------------------------------------------------------------------------- /roms/intro/notes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/intro/notes.inc -------------------------------------------------------------------------------- /roms/intro/palettes.rgbasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/roms/intro/palettes.rgbasm -------------------------------------------------------------------------------- /shaders/colour-correct.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/shaders/colour-correct.frag -------------------------------------------------------------------------------- /shaders/dotmatrix.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/shaders/dotmatrix.frag -------------------------------------------------------------------------------- /shaders/flipped.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/shaders/flipped.vert -------------------------------------------------------------------------------- /shaders/frameblend.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/shaders/frameblend.frag -------------------------------------------------------------------------------- /shaders/nothing.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/shaders/nothing.frag -------------------------------------------------------------------------------- /shaders/subpixel.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/shaders/subpixel.frag -------------------------------------------------------------------------------- /shaders/vert.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/shaders/vert.vert -------------------------------------------------------------------------------- /src/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/apu.c -------------------------------------------------------------------------------- /src/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/apu.h -------------------------------------------------------------------------------- /src/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/args.c -------------------------------------------------------------------------------- /src/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/args.h -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/audio.h -------------------------------------------------------------------------------- /src/audio_platform/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/audio_platform/null.c -------------------------------------------------------------------------------- /src/audio_platform/openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/audio_platform/openal.c -------------------------------------------------------------------------------- /src/audio_platform/openal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/audio_platform/openal.h -------------------------------------------------------------------------------- /src/audio_platform/opensl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/audio_platform/opensl.c -------------------------------------------------------------------------------- /src/audio_platform/opensl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/audio_platform/opensl.h -------------------------------------------------------------------------------- /src/bit_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/bit_utils.c -------------------------------------------------------------------------------- /src/bit_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/bit_utils.h -------------------------------------------------------------------------------- /src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/camera.c -------------------------------------------------------------------------------- /src/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/camera.h -------------------------------------------------------------------------------- /src/camera_platform/null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/camera_platform/null.c -------------------------------------------------------------------------------- /src/camera_platform/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/camera_platform/null.h -------------------------------------------------------------------------------- /src/camera_platform/v4l2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/camera_platform/v4l2.c -------------------------------------------------------------------------------- /src/camera_platform/v4l2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/camera_platform/v4l2.h -------------------------------------------------------------------------------- /src/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/cheats.c -------------------------------------------------------------------------------- /src/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/cheats.h -------------------------------------------------------------------------------- /src/colour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/colour.c -------------------------------------------------------------------------------- /src/colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/colour.h -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/config.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/config.h -------------------------------------------------------------------------------- /src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/constants.h -------------------------------------------------------------------------------- /src/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/core.c -------------------------------------------------------------------------------- /src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/core.h -------------------------------------------------------------------------------- /src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/cpu.c -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/ext-session-lock-v1-client-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/ext-session-lock-v1-client-protocol.c -------------------------------------------------------------------------------- /src/ext-session-lock-v1-client-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/ext-session-lock-v1-client-protocol.h -------------------------------------------------------------------------------- /src/ext-session-lock-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/ext-session-lock-v1.xml -------------------------------------------------------------------------------- /src/fontmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/fontmap.c -------------------------------------------------------------------------------- /src/fontmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/fontmap.h -------------------------------------------------------------------------------- /src/gbcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/gbcc.c -------------------------------------------------------------------------------- /src/gbcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/gbcc.h -------------------------------------------------------------------------------- /src/hdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/hdma.c -------------------------------------------------------------------------------- /src/hdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/hdma.h -------------------------------------------------------------------------------- /src/headless/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/headless/main.c -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/input.c -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/input.h -------------------------------------------------------------------------------- /src/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/mbc.c -------------------------------------------------------------------------------- /src/mbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/mbc.h -------------------------------------------------------------------------------- /src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/memory.c -------------------------------------------------------------------------------- /src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/memory.h -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/menu.h -------------------------------------------------------------------------------- /src/nelem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/nelem.h -------------------------------------------------------------------------------- /src/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/ops.c -------------------------------------------------------------------------------- /src/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/ops.h -------------------------------------------------------------------------------- /src/palettes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/palettes.c -------------------------------------------------------------------------------- /src/palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/palettes.h -------------------------------------------------------------------------------- /src/paths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/paths.c -------------------------------------------------------------------------------- /src/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/paths.h -------------------------------------------------------------------------------- /src/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/ppu.c -------------------------------------------------------------------------------- /src/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/ppu.h -------------------------------------------------------------------------------- /src/printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/printer.c -------------------------------------------------------------------------------- /src/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/printer.h -------------------------------------------------------------------------------- /src/printer_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/printer_platform.h -------------------------------------------------------------------------------- /src/printer_platform/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/printer_platform/terminal.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/save.c -------------------------------------------------------------------------------- /src/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/save.h -------------------------------------------------------------------------------- /src/screenshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/screenshot.c -------------------------------------------------------------------------------- /src/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/screenshot.h -------------------------------------------------------------------------------- /src/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/stb_image.h -------------------------------------------------------------------------------- /src/time_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/time_diff.c -------------------------------------------------------------------------------- /src/time_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/time_diff.h -------------------------------------------------------------------------------- /src/vram_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/vram_window.c -------------------------------------------------------------------------------- /src/vram_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/vram_window.h -------------------------------------------------------------------------------- /src/wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/wav.c -------------------------------------------------------------------------------- /src/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/wav.h -------------------------------------------------------------------------------- /src/wayland/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/wayland/main.c -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/window.c -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/src/window.h -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- 1 | romgen 2 | bin2screen 3 | -------------------------------------------------------------------------------- /testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/testing/Makefile -------------------------------------------------------------------------------- /testing/bin2screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/testing/bin2screen.c -------------------------------------------------------------------------------- /testing/fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/testing/fit.py -------------------------------------------------------------------------------- /testing/romgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/testing/romgen.c -------------------------------------------------------------------------------- /tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/tileset.png -------------------------------------------------------------------------------- /video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/video.mp4 -------------------------------------------------------------------------------- /windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/windows/icon.ico -------------------------------------------------------------------------------- /windows/icon.rc: -------------------------------------------------------------------------------- 1 | id ICON "icon.ico" 2 | -------------------------------------------------------------------------------- /windows/license_additions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/windows/license_additions.txt -------------------------------------------------------------------------------- /windows/msys2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdoPi/wlgblock/HEAD/windows/msys2.sh -------------------------------------------------------------------------------- /windows/settings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | gtk-font-name=Segoe UI 9 3 | --------------------------------------------------------------------------------