├── .gitignore ├── README.md ├── background ├── Makefile ├── README.md ├── background.c ├── bg_data.c ├── bg_data.pcx ├── bg_data_map.c ├── docs.sh └── screenshot.png ├── beep ├── Makefile ├── README.md ├── beep.c └── screenshot.png ├── big_sprite ├── Makefile ├── README.md ├── big_sprite.c ├── docs.sh ├── screenshot.png ├── sprite.c └── sprite.h ├── big_sprite_animation ├── Makefile ├── README.md ├── big_sprite_animation.c ├── cards.c ├── cards.gbr ├── cards.h └── screenshot.gif ├── blank ├── Makefile ├── README.md ├── blank.c ├── docs.sh └── screenshot.png ├── color ├── Makefile ├── README.md ├── bg_data.c ├── bg_data_map.c ├── color.c └── screenshot.png ├── detect_gb ├── Makefile ├── README.md ├── detect_gb.c └── screenshot.png ├── docs └── res │ ├── more_coming_soon.png │ └── readme_c.jst ├── drawing ├── Makefile ├── README.md ├── drawing.c └── screenshot.png ├── font ├── Makefile ├── README.md ├── font.c └── screenshot.png ├── hello_world ├── Makefile ├── README.md ├── docs.sh ├── hello_world.c └── screenshot.png ├── huge_sprite ├── Makefile ├── README.md ├── bg.h ├── bg.png ├── docs.sh ├── huge_sprite.c ├── screenshot.png ├── sprite.h └── sprite.png ├── input_state ├── Makefile ├── README.md ├── input_state.c └── screenshot.png ├── input_wait ├── Makefile ├── README.md ├── input_wait.c └── screenshot.png ├── link ├── Makefile ├── README.md ├── link.c └── screenshot.png ├── move_sprite ├── Makefile ├── README.md ├── move_sprite.c ├── screenshot.gif ├── ufo.c ├── ufo.gbr └── ufo.h ├── save_ram ├── Makefile ├── README.md ├── save_ram.c └── screenshot.png ├── simple_shmup ├── Makefile ├── README.md ├── background.bmp ├── backgrounds.gbr ├── bank2.c ├── bank3.c ├── bg_tile.c ├── bg_tile.h ├── bg_title.c ├── bg_title_map.c ├── make.bat ├── screenshot.png ├── simple_shmup.c ├── spr_tiles.c ├── spr_tiles.h └── sprites.gbr ├── small_sprite ├── Makefile ├── README.md ├── screenshot.png ├── small_sprite.c ├── sprite.c ├── sprite.gbr ├── sprite.h └── sprite.png └── window ├── Makefile ├── README.md ├── bg.c ├── bg.pcx ├── bg_map.c ├── border.c ├── border.gbr ├── border.h ├── main.c ├── screenshot.png ├── window.c ├── window.gbm └── window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/README.md -------------------------------------------------------------------------------- /background/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/Makefile -------------------------------------------------------------------------------- /background/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/README.md -------------------------------------------------------------------------------- /background/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/background.c -------------------------------------------------------------------------------- /background/bg_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/bg_data.c -------------------------------------------------------------------------------- /background/bg_data.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/bg_data.pcx -------------------------------------------------------------------------------- /background/bg_data_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/bg_data_map.c -------------------------------------------------------------------------------- /background/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/docs.sh -------------------------------------------------------------------------------- /background/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/background/screenshot.png -------------------------------------------------------------------------------- /beep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/beep/Makefile -------------------------------------------------------------------------------- /beep/README.md: -------------------------------------------------------------------------------- 1 | # Beep 2 | 3 | ![](screenshot.png) 4 | 5 | Demonstrates how to play a simple SFX sound. 6 | 7 | -------------------------------------------------------------------------------- /beep/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/beep/beep.c -------------------------------------------------------------------------------- /beep/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/beep/screenshot.png -------------------------------------------------------------------------------- /big_sprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite/Makefile -------------------------------------------------------------------------------- /big_sprite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite/README.md -------------------------------------------------------------------------------- /big_sprite/big_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite/big_sprite.c -------------------------------------------------------------------------------- /big_sprite/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite/docs.sh -------------------------------------------------------------------------------- /big_sprite/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite/screenshot.png -------------------------------------------------------------------------------- /big_sprite/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite/sprite.c -------------------------------------------------------------------------------- /big_sprite/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite/sprite.h -------------------------------------------------------------------------------- /big_sprite_animation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite_animation/Makefile -------------------------------------------------------------------------------- /big_sprite_animation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite_animation/README.md -------------------------------------------------------------------------------- /big_sprite_animation/big_sprite_animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite_animation/big_sprite_animation.c -------------------------------------------------------------------------------- /big_sprite_animation/cards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite_animation/cards.c -------------------------------------------------------------------------------- /big_sprite_animation/cards.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite_animation/cards.gbr -------------------------------------------------------------------------------- /big_sprite_animation/cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite_animation/cards.h -------------------------------------------------------------------------------- /big_sprite_animation/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/big_sprite_animation/screenshot.gif -------------------------------------------------------------------------------- /blank/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/blank/Makefile -------------------------------------------------------------------------------- /blank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/blank/README.md -------------------------------------------------------------------------------- /blank/blank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/blank/blank.c -------------------------------------------------------------------------------- /blank/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/blank/docs.sh -------------------------------------------------------------------------------- /blank/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/blank/screenshot.png -------------------------------------------------------------------------------- /color/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/color/Makefile -------------------------------------------------------------------------------- /color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/color/README.md -------------------------------------------------------------------------------- /color/bg_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/color/bg_data.c -------------------------------------------------------------------------------- /color/bg_data_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/color/bg_data_map.c -------------------------------------------------------------------------------- /color/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/color/color.c -------------------------------------------------------------------------------- /color/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/color/screenshot.png -------------------------------------------------------------------------------- /detect_gb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/detect_gb/Makefile -------------------------------------------------------------------------------- /detect_gb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/detect_gb/README.md -------------------------------------------------------------------------------- /detect_gb/detect_gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/detect_gb/detect_gb.c -------------------------------------------------------------------------------- /detect_gb/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/detect_gb/screenshot.png -------------------------------------------------------------------------------- /docs/res/more_coming_soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/docs/res/more_coming_soon.png -------------------------------------------------------------------------------- /docs/res/readme_c.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/docs/res/readme_c.jst -------------------------------------------------------------------------------- /drawing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/drawing/Makefile -------------------------------------------------------------------------------- /drawing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/drawing/README.md -------------------------------------------------------------------------------- /drawing/drawing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/drawing/drawing.c -------------------------------------------------------------------------------- /drawing/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/drawing/screenshot.png -------------------------------------------------------------------------------- /font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/font/Makefile -------------------------------------------------------------------------------- /font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/font/README.md -------------------------------------------------------------------------------- /font/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/font/font.c -------------------------------------------------------------------------------- /font/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/font/screenshot.png -------------------------------------------------------------------------------- /hello_world/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/hello_world/Makefile -------------------------------------------------------------------------------- /hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/hello_world/README.md -------------------------------------------------------------------------------- /hello_world/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/hello_world/docs.sh -------------------------------------------------------------------------------- /hello_world/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/hello_world/hello_world.c -------------------------------------------------------------------------------- /hello_world/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/hello_world/screenshot.png -------------------------------------------------------------------------------- /huge_sprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/Makefile -------------------------------------------------------------------------------- /huge_sprite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/README.md -------------------------------------------------------------------------------- /huge_sprite/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/bg.h -------------------------------------------------------------------------------- /huge_sprite/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/bg.png -------------------------------------------------------------------------------- /huge_sprite/docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/docs.sh -------------------------------------------------------------------------------- /huge_sprite/huge_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/huge_sprite.c -------------------------------------------------------------------------------- /huge_sprite/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/screenshot.png -------------------------------------------------------------------------------- /huge_sprite/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/sprite.h -------------------------------------------------------------------------------- /huge_sprite/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/huge_sprite/sprite.png -------------------------------------------------------------------------------- /input_state/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/input_state/Makefile -------------------------------------------------------------------------------- /input_state/README.md: -------------------------------------------------------------------------------- 1 | # Input State 2 | 3 | ![](screenshot.png) 4 | 5 | Prints the pressed button every 100ms. 6 | 7 | -------------------------------------------------------------------------------- /input_state/input_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/input_state/input_state.c -------------------------------------------------------------------------------- /input_state/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/input_state/screenshot.png -------------------------------------------------------------------------------- /input_wait/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/input_wait/Makefile -------------------------------------------------------------------------------- /input_wait/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/input_wait/README.md -------------------------------------------------------------------------------- /input_wait/input_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/input_wait/input_wait.c -------------------------------------------------------------------------------- /input_wait/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/input_wait/screenshot.png -------------------------------------------------------------------------------- /link/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/link/Makefile -------------------------------------------------------------------------------- /link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/link/README.md -------------------------------------------------------------------------------- /link/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/link/link.c -------------------------------------------------------------------------------- /link/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/link/screenshot.png -------------------------------------------------------------------------------- /move_sprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/move_sprite/Makefile -------------------------------------------------------------------------------- /move_sprite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/move_sprite/README.md -------------------------------------------------------------------------------- /move_sprite/move_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/move_sprite/move_sprite.c -------------------------------------------------------------------------------- /move_sprite/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/move_sprite/screenshot.gif -------------------------------------------------------------------------------- /move_sprite/ufo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/move_sprite/ufo.c -------------------------------------------------------------------------------- /move_sprite/ufo.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/move_sprite/ufo.gbr -------------------------------------------------------------------------------- /move_sprite/ufo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/move_sprite/ufo.h -------------------------------------------------------------------------------- /save_ram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/save_ram/Makefile -------------------------------------------------------------------------------- /save_ram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/save_ram/README.md -------------------------------------------------------------------------------- /save_ram/save_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/save_ram/save_ram.c -------------------------------------------------------------------------------- /save_ram/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/save_ram/screenshot.png -------------------------------------------------------------------------------- /simple_shmup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/Makefile -------------------------------------------------------------------------------- /simple_shmup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/README.md -------------------------------------------------------------------------------- /simple_shmup/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/background.bmp -------------------------------------------------------------------------------- /simple_shmup/backgrounds.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/backgrounds.gbr -------------------------------------------------------------------------------- /simple_shmup/bank2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/bank2.c -------------------------------------------------------------------------------- /simple_shmup/bank3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/bank3.c -------------------------------------------------------------------------------- /simple_shmup/bg_tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/bg_tile.c -------------------------------------------------------------------------------- /simple_shmup/bg_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/bg_tile.h -------------------------------------------------------------------------------- /simple_shmup/bg_title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/bg_title.c -------------------------------------------------------------------------------- /simple_shmup/bg_title_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/bg_title_map.c -------------------------------------------------------------------------------- /simple_shmup/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/make.bat -------------------------------------------------------------------------------- /simple_shmup/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/screenshot.png -------------------------------------------------------------------------------- /simple_shmup/simple_shmup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/simple_shmup.c -------------------------------------------------------------------------------- /simple_shmup/spr_tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/spr_tiles.c -------------------------------------------------------------------------------- /simple_shmup/spr_tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/spr_tiles.h -------------------------------------------------------------------------------- /simple_shmup/sprites.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/simple_shmup/sprites.gbr -------------------------------------------------------------------------------- /small_sprite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/Makefile -------------------------------------------------------------------------------- /small_sprite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/README.md -------------------------------------------------------------------------------- /small_sprite/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/screenshot.png -------------------------------------------------------------------------------- /small_sprite/small_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/small_sprite.c -------------------------------------------------------------------------------- /small_sprite/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/sprite.c -------------------------------------------------------------------------------- /small_sprite/sprite.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/sprite.gbr -------------------------------------------------------------------------------- /small_sprite/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/sprite.h -------------------------------------------------------------------------------- /small_sprite/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/small_sprite/sprite.png -------------------------------------------------------------------------------- /window/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/Makefile -------------------------------------------------------------------------------- /window/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/README.md -------------------------------------------------------------------------------- /window/bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/bg.c -------------------------------------------------------------------------------- /window/bg.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/bg.pcx -------------------------------------------------------------------------------- /window/bg_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/bg_map.c -------------------------------------------------------------------------------- /window/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/border.c -------------------------------------------------------------------------------- /window/border.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/border.gbr -------------------------------------------------------------------------------- /window/border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/border.h -------------------------------------------------------------------------------- /window/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/main.c -------------------------------------------------------------------------------- /window/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/screenshot.png -------------------------------------------------------------------------------- /window/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/window.c -------------------------------------------------------------------------------- /window/window.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/window.gbm -------------------------------------------------------------------------------- /window/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrombout/gbdk_playground/HEAD/window/window.h --------------------------------------------------------------------------------