diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-03-10 22:55:41 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2025-03-10 23:22:22 +0100 |
| commit | ba0cf9e5293f258c58ced1fcc47f558e7419dae4 (patch) | |
| tree | b620422506e5b8a951f7e52756c116bfb1498ea3 /scroll/include/all.s | |
| parent | 1a74e6a1856673072a61abd0861759901bc2d939 (diff) | |
| download | code.nes-ba0cf9e5293f258c58ced1fcc47f558e7419dae4.tar.gz code.nes-ba0cf9e5293f258c58ced1fcc47f558e7419dae4.zip | |
Provide an example on multiscreen scrolling
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'scroll/include/all.s')
| -rw-r--r-- | scroll/include/all.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scroll/include/all.s b/scroll/include/all.s new file mode 100644 index 0000000..e9f059d --- /dev/null +++ b/scroll/include/all.s @@ -0,0 +1,18 @@ +;;; Instead of figuring out the includes for all the examples, simply include +;;; this one and run with it. + +.include "apu.s" +.include "oam.s" +.include "ppu.s" +.include "../../shared/asm.s" +.include "../../shared/joypad.s" + +.include "reset.s" +.include "palettes.s" +.include "metatile.s" +.include "globals.s" +.include "collision.s" +.include "buffer.s" +.include "background.s" +.include "player.s" +.include "driver.s" |
