├── 01_minimal_template.asm ├── 02_minimal_background_scroll.asm ├── 02_ugly_sprite_moves.asm ├── 03_background_scroll.asm ├── 03_good_sprite_moves.asm ├── 04_better_sprite_moves.asm ├── 05_best_sprite_moves.asm ├── 06_background_scroll.asm ├── 07_load_tiles_to_background.asm ├── 08_hello_world_background.asm ├── 09_joypad_movement.asm ├── 10_custom_graphics.asm ├── 11_palette_change_animation.asm ├── 12_hardware_detection.asm ├── 13_color_palette_setup.asm ├── 14_color_palette_exploration.asm ├── 15_background_color_gradient.asm ├── 16_background_2x_height.asm ├── README.MD ├── basic_sprite.inc ├── bgb_gify.sh ├── cgbhw.inc ├── debug.inc ├── dma.inc ├── gbhw.inc ├── ibmpc1.inc ├── images ├── background_2x_height.asmclip.gif ├── background_color_gradient.asmclip.gif ├── better_sprite_moves.asmclip.gif ├── color_palette_exploration.asmclip.gif ├── custom_graphics.asmclip.gif ├── hello_world_background.asmclip.gif ├── minimal_background_scroll.asmclip.gif └── palette_change_animation.asmclip.gif ├── memory.asm └── sprite.inc /01_minimal_template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/01_minimal_template.asm -------------------------------------------------------------------------------- /02_minimal_background_scroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/02_minimal_background_scroll.asm -------------------------------------------------------------------------------- /02_ugly_sprite_moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/02_ugly_sprite_moves.asm -------------------------------------------------------------------------------- /03_background_scroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/03_background_scroll.asm -------------------------------------------------------------------------------- /03_good_sprite_moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/03_good_sprite_moves.asm -------------------------------------------------------------------------------- /04_better_sprite_moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/04_better_sprite_moves.asm -------------------------------------------------------------------------------- /05_best_sprite_moves.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/05_best_sprite_moves.asm -------------------------------------------------------------------------------- /06_background_scroll.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/06_background_scroll.asm -------------------------------------------------------------------------------- /07_load_tiles_to_background.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/07_load_tiles_to_background.asm -------------------------------------------------------------------------------- /08_hello_world_background.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/08_hello_world_background.asm -------------------------------------------------------------------------------- /09_joypad_movement.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/09_joypad_movement.asm -------------------------------------------------------------------------------- /10_custom_graphics.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/10_custom_graphics.asm -------------------------------------------------------------------------------- /11_palette_change_animation.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/11_palette_change_animation.asm -------------------------------------------------------------------------------- /12_hardware_detection.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/12_hardware_detection.asm -------------------------------------------------------------------------------- /13_color_palette_setup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/13_color_palette_setup.asm -------------------------------------------------------------------------------- /14_color_palette_exploration.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/14_color_palette_exploration.asm -------------------------------------------------------------------------------- /15_background_color_gradient.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/15_background_color_gradient.asm -------------------------------------------------------------------------------- /16_background_2x_height.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/16_background_2x_height.asm -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/README.MD -------------------------------------------------------------------------------- /basic_sprite.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/basic_sprite.inc -------------------------------------------------------------------------------- /bgb_gify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/bgb_gify.sh -------------------------------------------------------------------------------- /cgbhw.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/cgbhw.inc -------------------------------------------------------------------------------- /debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/debug.inc -------------------------------------------------------------------------------- /dma.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/dma.inc -------------------------------------------------------------------------------- /gbhw.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/gbhw.inc -------------------------------------------------------------------------------- /ibmpc1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/ibmpc1.inc -------------------------------------------------------------------------------- /images/background_2x_height.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/background_2x_height.asmclip.gif -------------------------------------------------------------------------------- /images/background_color_gradient.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/background_color_gradient.asmclip.gif -------------------------------------------------------------------------------- /images/better_sprite_moves.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/better_sprite_moves.asmclip.gif -------------------------------------------------------------------------------- /images/color_palette_exploration.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/color_palette_exploration.asmclip.gif -------------------------------------------------------------------------------- /images/custom_graphics.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/custom_graphics.asmclip.gif -------------------------------------------------------------------------------- /images/hello_world_background.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/hello_world_background.asmclip.gif -------------------------------------------------------------------------------- /images/minimal_background_scroll.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/minimal_background_scroll.asmclip.gif -------------------------------------------------------------------------------- /images/palette_change_animation.asmclip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/images/palette_change_animation.asmclip.gif -------------------------------------------------------------------------------- /memory.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/memory.asm -------------------------------------------------------------------------------- /sprite.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lancekindle/DMGreport/HEAD/sprite.inc --------------------------------------------------------------------------------