├── .gitignore ├── 128b ├── README.md ├── Rules.launch ├── lynxPlasmosis │ ├── Makefile │ ├── README.md │ ├── Rules.launch │ ├── allff.lyx.bz2 │ ├── lynxPlasmosis.png │ ├── lynxPlasmosis_pouet.png │ ├── nfo.txt │ ├── plasmosis.asm │ ├── plasmosis.bin │ └── plasmosis.lnx ├── outline2020 │ ├── .gitignore │ ├── Makefile │ ├── README.txt │ ├── allff.lyx.bz2 │ ├── outline.asm │ ├── outline.lnx │ └── outline.o ├── outline2020_snd │ ├── .gitignore │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── outline.asm │ ├── outline.lnx │ └── outline.o ├── rasta128 │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── nfo.txt │ ├── rasta128.asm │ ├── rasta128.bin │ ├── rasta128.lnx │ └── rasta128.png └── sprite_mini │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── sprite_mini.asm │ ├── sprite_mini.lnx │ └── sprite_mini.o ├── 248b ├── .gitignore ├── 248b_bin.7z ├── Mars_Attacks │ ├── Makefile │ ├── Mars_Attacks.png │ ├── Rules.launch │ ├── allff.lyx.bz2 │ ├── bll_init.inc │ ├── loader.asm │ ├── mars_attacks.asm │ ├── mars_attacks.lnx │ └── nfo.txt ├── README.md ├── Rules.launch ├── aMAZEing │ ├── .gitignore │ ├── Makefile │ ├── aMAZEing.png │ ├── allff.lyx.bz2 │ ├── maze.asm │ ├── maze.lnx │ └── maze.o ├── allff.lyx.bz2 ├── bin │ ├── mandel.lnx │ ├── mandel.o │ ├── mandel2.lnx │ ├── mandel2.o │ ├── plasma1.lnx │ ├── plasma1.o │ ├── plasma2.lnx │ ├── plasma2.o │ ├── plasma3.1.lnx │ ├── plasma3.1.o │ ├── plasma3.lnx │ ├── plasma3.o │ ├── rotz.lnx │ ├── rotz.o │ ├── tuef.lnx │ └── tuef.o ├── bubbleUniverse4Lynx │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── bu4l.asm │ └── bu4l.lnx ├── demos.gif ├── dido │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── dido.asm │ ├── dido.lnx │ ├── dido.png │ └── nfo.txt ├── gol249 │ ├── Makefile │ ├── README.txt │ ├── allff.lyx.bz2 │ ├── gol249.asm │ ├── gol249.lnx │ ├── gol249.o │ └── gol249.png ├── juliaWalk │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── julia.asm │ ├── julia.lnx │ └── nfo.txt ├── lissa256 │ ├── Makefile │ ├── lissa256.asm │ ├── lissa256.lnx │ ├── lissa256.png │ └── nfo.txt ├── loader │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── loader.asm │ ├── loader.lnx │ ├── new_bll.spr │ └── new_bll.sps ├── lovebyte21 │ ├── LyLoBy │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── lyloby.asm │ │ ├── lyloby.bin │ │ ├── lyloby.lnx │ │ ├── lyloby.o │ │ ├── lyloby.png │ │ └── readme.md │ ├── arabeske │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── arabeske.asm │ │ ├── arabeske.lnx │ │ ├── arabeske.o │ │ ├── arabeske.png │ │ └── readme.md │ ├── minisprite │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── minisprite.asm │ │ ├── minisprite.lnx │ │ ├── minisprite.o │ │ ├── minisprite.png │ │ └── readme.md │ ├── readme.md │ └── taon │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── readme.md │ │ ├── song.lb │ │ ├── taon.asm │ │ ├── taon.bin │ │ ├── taon.lnx │ │ └── taon.o ├── lovebyte22 │ ├── PurpleRay │ │ ├── Makefile │ │ ├── PurpleRay.asm │ │ ├── PurpleRay.lnx │ │ ├── PurpleRay.png │ │ ├── allff.lyx.bz2 │ │ └── file_id.diz │ ├── checkerGlitch │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── checkerGlitch_16b.asm │ │ ├── checkerGlitch_16b.bin │ │ ├── checkerGlitch_16b.jpg │ │ ├── checkerGlitch_16b.lnx │ │ ├── checkerGlitch_16b.o │ │ └── file_id.diz │ ├── moving_bar_32b │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── file_id.diz │ │ ├── moving_bar_32b.asm │ │ ├── moving_bar_32b.lnx │ │ └── moving_bar_32b.png │ ├── pinkDive │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── file_id.diz │ │ ├── pinkDive.asm │ │ ├── pinkDive.bin │ │ ├── pinkDive.lnx │ │ ├── pinkDive.o │ │ └── pinkDive.png │ ├── pinkTris │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── file_id.diz │ │ ├── micro_loader.asm │ │ ├── micro_loader.bin │ │ ├── pinkTris.png │ │ ├── pinktris.asm │ │ ├── pinktris.bin │ │ ├── pinktris.lnx │ │ └── pinktris.o │ ├── pinkTunnel │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── file_id.diz │ │ ├── pinkTunnel.asm │ │ ├── pinkTunnel.bin │ │ ├── pinkTunnel.lnx │ │ ├── pinkTunnel.o │ │ └── pinkTunnel.png │ ├── readme.md │ ├── splitscreen │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── file_id.diz │ │ ├── splitscreen_16b.asm │ │ ├── splitscreen_16b.bin │ │ ├── splitscreen_16b.jpg │ │ ├── splitscreen_16b.lnx │ │ └── splitscreen_16b.o │ ├── steps_8b │ │ ├── file_id.diz │ │ ├── steps_8b.asm │ │ ├── steps_8b.bin │ │ ├── steps_8b.jpg │ │ └── steps_8b.lnx │ ├── waves_8b │ │ ├── file_id.diz │ │ ├── waves_8b.asm │ │ ├── waves_8b.bin │ │ ├── waves_8b.lnx │ │ └── waves_8b.png │ └── xor_scroll │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── file_id.diz │ │ ├── xor_scroll.asm │ │ ├── xor_scroll.bin │ │ ├── xor_scroll.lnx │ │ ├── xor_scroll.o │ │ └── xor_scroll.png ├── lovebyte24 │ ├── 3days │ │ ├── 3days.asm │ │ ├── 3days.lnx │ │ ├── Makefile │ │ └── allff.lyx.bz2 │ ├── bubbleUniverse4LynxV2 │ │ ├── Makefile │ │ ├── bu4l.asm │ │ ├── bu4l.lnx │ │ ├── bu4l.png │ │ └── nfo.txt │ ├── lynxYARC512 │ │ ├── Makefile │ │ ├── line.inc │ │ ├── loader.asm │ │ ├── lynxYARC512.asm │ │ ├── lynxYARC512.lnx │ │ ├── lynxYARC512.png │ │ └── nfo.txt │ ├── readme.md │ ├── schiebefix │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── nfo.txt │ │ ├── schiebefix.png │ │ ├── sf.asm │ │ └── sf.lnx │ └── starfield64 │ │ ├── Makefile │ │ ├── nfo.txt │ │ ├── starfield.asm │ │ ├── starfield.lnx │ │ ├── starfield64.png │ │ └── starfield64_smalll.png ├── mandel │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── mandel.asm │ ├── mandel.lnx │ ├── mandel.o │ └── mandel.png ├── mandel2 │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── mandel.asm │ ├── mandel.lnx │ ├── mandel.o │ └── mandel.png ├── noise │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── noise.asm │ ├── noise.bin │ ├── noise.lnx │ └── readme.md ├── outline2025 │ ├── parallax │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── bll_init.inc │ │ ├── nfo.txt │ │ ├── parallax.asm │ │ ├── parallax.lnx │ │ └── parallax.png │ └── riml │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── bll_init.inc │ │ ├── nfo.txt │ │ ├── riml.asm │ │ ├── riml.lnx │ │ └── riml.png ├── plasma1 │ ├── .gitignore │ ├── Makefile │ ├── plasma.asm │ ├── plasma.lnx │ ├── plasma.o │ └── sin.c ├── plasma2 │ ├── .gitignore │ ├── Makefile │ ├── plasma.asm │ ├── plasma.lnx │ ├── plasma.o │ └── sin.c ├── plasma3.1 │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── plasma.asm │ ├── plasma.lnx │ ├── plasma.o │ └── plasma.png ├── plasma3 │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── plasma.asm │ ├── plasma.lnx │ ├── plasma.o │ └── plasma.png ├── rottoprojoLynx │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── nfo.txt │ ├── rottoprojoLynx.asm │ └── rottoprojoLynx.lnx ├── rotz │ ├── Makefile │ ├── README.txt │ ├── allff.lyx.bz2 │ ├── rotz.asm │ ├── rotz.bin │ └── rotz.lnx ├── sierlynxi │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── sierlynxi.asm │ ├── sierlynxi.lnx │ ├── sierlynxi.o │ └── sierlynxi.png ├── snake │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── nfo.txt │ ├── snake.asm │ ├── snake.lnx │ ├── snake.png │ └── snake_felix.lnx ├── sv2k21 │ ├── README.md │ ├── fuji_rot │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── fuji_rot.asm │ │ ├── fuji_rot.lnx │ │ ├── fuji_rot.png │ │ └── readme.txt │ └── warp4.2 │ │ ├── Makefile │ │ ├── allff.lyx.bz2 │ │ ├── readme.txt │ │ ├── warp4.2.asm │ │ ├── warp4.2.lnx │ │ └── warp4.2.png ├── timewarp │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── timewarp.asm │ ├── timewarp.lnx │ ├── timewarp.o │ └── timewarp.png ├── tuef │ ├── Makefile │ ├── README.txt │ ├── allff.lyx.bz2 │ ├── tuef.7z │ ├── tuef.asm │ ├── tuef.bin │ ├── tuef.lnx │ └── tuef.pde └── twister249 │ ├── Makefile │ ├── allff.lyx.bz2 │ ├── twister.asm │ └── twister.lnx ├── LICENSE ├── README.md ├── Rules.launch ├── chained_scbs ├── Makefile ├── chained_scbs.asm └── chained_scbs.o ├── chained_scbs2 ├── .gitignore ├── Makefile ├── chained_scbs.asm ├── chained_scbs.o └── sprites │ ├── Makefile │ └── phobyx.pcx ├── cycle_check ├── Makefile ├── cycle_check.asm └── cycle_check.o ├── cycle_check_hbl ├── Makefile ├── cycle_check.asm ├── cycle_check.o ├── irq.inc └── my_irq.inc ├── flasher ├── Makefile ├── README.md ├── bin │ └── mingw │ │ └── flash_up.exe ├── flash_code.S ├── flash_up.c ├── flash_up.exe └── flashcard.asm ├── lniccc2000 ├── Makefile ├── Rules.launch ├── abcmusic.inc ├── abcmusic.var ├── allff.lyx.bz2 ├── lniccc2000.asm ├── lniccc2000.jpg ├── lniccc2000.lnx ├── lniccc2000_tsc.lnx ├── ml512.enc ├── poly8.inc ├── poly8.var ├── readme.md ├── scene.bin.lz4 ├── scene.bin.tsc ├── scene │ ├── .gitignore │ ├── Makefile │ ├── readme.md │ ├── scene1.dat │ ├── scene2lynx.c │ ├── scene_description.txt │ └── tmp │ │ └── dummy ├── title1.pcx ├── title1.spr ├── unlz4.var ├── unlz4_fast.inc ├── untsc.inc └── untsc.var ├── microloader ├── .gitignore ├── Makefile ├── demo.s ├── micro_loader.s ├── ml.lnx └── ml.lyx ├── monalynx ├── .gitignore ├── Makefile ├── allff.lyx.bz2 ├── monaload.asm ├── monalynx.asm ├── monalynx.lnx ├── monalynx.o ├── monalynx.png └── readme.txt ├── monalynx_no_o ├── Makefile ├── allff.lyx.bz2 ├── monaload.asm ├── monalynx.asm ├── monalynx.lnx └── monalynx.var ├── nostalgia ├── .gitignore ├── Makefile ├── Rules.launch ├── SCENE_v1.dat ├── allff.lyx.bz2 ├── ml512.enc ├── nostalgia.asm ├── nostalgia.lnx ├── nostalgia.png ├── poly8.inc ├── poly8.var └── readme.md ├── raycast ├── .gitignore ├── Makefile ├── deltatab.inc ├── door.inc ├── door.pcx ├── frame.inc ├── frame.pcx ├── mandel.inc ├── mandel.sps ├── monster.inc ├── monster.pcx ├── monster_back.pcx ├── monsterb.inc ├── phobyx.inc ├── phobyx.pcx ├── raycast.asm ├── raycast.lnx ├── scr_frame_left.pcx ├── scr_frame_left.spr ├── sintab.inc ├── smiley.inc ├── smiley.pcx ├── smiley_back.pcx ├── smiley_left.pcx ├── smiley_right.pcx ├── smileyb.inc ├── smileyl.inc ├── smileyr.inc ├── spr │ ├── door000000.spr │ ├── door000001.spr │ ├── door000002.spr │ ├── door000003.spr │ ├── door000004.spr │ ├── door000005.spr │ ├── door000006.spr │ ├── door000007.spr │ ├── door000008.spr │ ├── door000009.spr │ ├── door000010.spr │ ├── door000011.spr │ ├── door000012.spr │ ├── door000013.spr │ ├── door000014.spr │ ├── door000015.spr │ ├── door000016.spr │ ├── door000017.spr │ ├── door000018.spr │ ├── door000019.spr │ ├── door000020.spr │ ├── door000021.spr │ ├── door000022.spr │ ├── door000023.spr │ ├── door000024.spr │ ├── door000025.spr │ ├── door000026.spr │ ├── door000027.spr │ ├── door000028.spr │ ├── door000029.spr │ ├── door000030.spr │ ├── door000031.spr │ ├── frame000000.spr │ ├── frame000001.spr │ ├── frame000002.spr │ ├── frame000003.spr │ ├── frame000004.spr │ ├── frame000005.spr │ ├── frame000006.spr │ ├── frame000007.spr │ ├── frame000008.spr │ ├── frame000009.spr │ ├── frame000010.spr │ ├── frame000011.spr │ ├── frame000012.spr │ ├── frame000013.spr │ ├── frame000014.spr │ ├── frame000015.spr │ ├── frame000016.spr │ ├── frame000017.spr │ ├── frame000018.spr │ ├── frame000019.spr │ ├── frame000020.spr │ ├── frame000021.spr │ ├── frame000022.spr │ ├── frame000023.spr │ ├── frame000024.spr │ ├── frame000025.spr │ ├── frame000026.spr │ ├── frame000027.spr │ ├── frame000028.spr │ ├── frame000029.spr │ ├── frame000030.spr │ ├── frame000031.spr │ ├── mandel000000.spr │ ├── mandel000001.spr │ ├── mandel000002.spr │ ├── mandel000003.spr │ ├── mandel000004.spr │ ├── mandel000005.spr │ ├── mandel000006.spr │ ├── mandel000007.spr │ ├── mandel000008.spr │ ├── mandel000009.spr │ ├── mandel000010.spr │ ├── mandel000011.spr │ ├── mandel000012.spr │ ├── mandel000013.spr │ ├── mandel000014.spr │ ├── mandel000015.spr │ ├── mandel000016.spr │ ├── mandel000017.spr │ ├── mandel000018.spr │ ├── mandel000019.spr │ ├── mandel000020.spr │ ├── mandel000021.spr │ ├── mandel000022.spr │ ├── mandel000023.spr │ ├── mandel000024.spr │ ├── mandel000025.spr │ ├── mandel000026.spr │ ├── mandel000027.spr │ ├── mandel000028.spr │ ├── mandel000029.spr │ ├── mandel000030.spr │ ├── mandel000031.spr │ ├── monster000000.spr │ ├── monster000001.spr │ ├── monster000002.spr │ ├── monster000003.spr │ ├── monster000004.spr │ ├── monster000005.spr │ ├── monster000006.spr │ ├── monster000007.spr │ ├── monster000008.spr │ ├── monster000009.spr │ ├── monster000010.spr │ ├── monster000011.spr │ ├── monster000012.spr │ ├── monster000013.spr │ ├── monster000014.spr │ ├── monster000015.spr │ ├── monster000016.spr │ ├── monster000017.spr │ ├── monster000018.spr │ ├── monster000019.spr │ ├── monster000020.spr │ ├── monster000021.spr │ ├── monster000022.spr │ ├── monster000023.spr │ ├── monster_back000000.spr │ ├── monster_back000001.spr │ ├── monster_back000002.spr │ ├── monster_back000003.spr │ ├── monster_back000004.spr │ ├── monster_back000005.spr │ ├── monster_back000006.spr │ ├── monster_back000007.spr │ ├── monster_back000008.spr │ ├── monster_back000009.spr │ ├── monster_back000010.spr │ ├── monster_back000011.spr │ ├── monster_back000012.spr │ ├── monster_back000013.spr │ ├── monster_back000014.spr │ ├── monster_back000015.spr │ ├── monster_back000016.spr │ ├── monster_back000017.spr │ ├── monster_back000018.spr │ ├── monster_back000019.spr │ ├── monster_back000020.spr │ ├── monster_back000021.spr │ ├── monster_back000022.spr │ ├── monster_back000023.spr │ ├── phobyx000000.spr │ ├── phobyx000001.spr │ ├── phobyx000002.spr │ ├── phobyx000003.spr │ ├── phobyx000004.spr │ ├── phobyx000005.spr │ ├── phobyx000006.spr │ ├── phobyx000007.spr │ ├── phobyx000008.spr │ ├── phobyx000009.spr │ ├── phobyx000010.spr │ ├── phobyx000011.spr │ ├── phobyx000012.spr │ ├── phobyx000013.spr │ ├── phobyx000014.spr │ ├── phobyx000015.spr │ ├── phobyx000016.spr │ ├── phobyx000017.spr │ ├── phobyx000018.spr │ ├── phobyx000019.spr │ ├── phobyx000020.spr │ ├── phobyx000021.spr │ ├── phobyx000022.spr │ ├── phobyx000023.spr │ ├── phobyx000024.spr │ ├── phobyx000025.spr │ ├── phobyx000026.spr │ ├── phobyx000027.spr │ ├── phobyx000028.spr │ ├── phobyx000029.spr │ ├── phobyx000030.spr │ ├── phobyx000031.spr │ ├── smiley000000.spr │ ├── smiley000001.spr │ ├── smiley000002.spr │ ├── smiley000003.spr │ ├── smiley000004.spr │ ├── smiley000005.spr │ ├── smiley000006.spr │ ├── smiley000007.spr │ ├── smiley000008.spr │ ├── smiley000009.spr │ ├── smiley000010.spr │ ├── smiley000011.spr │ ├── smiley000012.spr │ ├── smiley000013.spr │ ├── smiley000014.spr │ ├── smiley000015.spr │ ├── smiley000016.spr │ ├── smiley000017.spr │ ├── smiley000018.spr │ ├── smiley000019.spr │ ├── smiley000020.spr │ ├── smiley000021.spr │ ├── smiley000022.spr │ ├── smiley000023.spr │ ├── smiley000024.spr │ ├── smiley000025.spr │ ├── smiley000026.spr │ ├── smiley000027.spr │ ├── smiley000028.spr │ ├── smiley000029.spr │ ├── smiley000030.spr │ ├── smiley000031.spr │ ├── smiley_back000000.spr │ ├── smiley_back000001.spr │ ├── smiley_back000002.spr │ ├── smiley_back000003.spr │ ├── smiley_back000004.spr │ ├── smiley_back000005.spr │ ├── smiley_back000006.spr │ ├── smiley_back000007.spr │ ├── smiley_back000008.spr │ ├── smiley_back000009.spr │ ├── smiley_back000010.spr │ ├── smiley_back000011.spr │ ├── smiley_back000012.spr │ ├── smiley_back000013.spr │ ├── smiley_back000014.spr │ ├── smiley_back000015.spr │ ├── smiley_back000016.spr │ ├── smiley_back000017.spr │ ├── smiley_back000018.spr │ ├── smiley_back000019.spr │ ├── smiley_back000020.spr │ ├── smiley_back000021.spr │ ├── smiley_back000022.spr │ ├── smiley_back000023.spr │ ├── smiley_back000024.spr │ ├── smiley_back000025.spr │ ├── smiley_back000026.spr │ ├── smiley_back000027.spr │ ├── smiley_back000028.spr │ ├── smiley_back000029.spr │ ├── smiley_back000030.spr │ ├── smiley_back000031.spr │ ├── smiley_left000000.spr │ ├── smiley_left000001.spr │ ├── smiley_left000002.spr │ ├── smiley_left000003.spr │ ├── smiley_left000004.spr │ ├── smiley_left000005.spr │ ├── smiley_left000006.spr │ ├── smiley_left000007.spr │ ├── smiley_left000008.spr │ ├── smiley_left000009.spr │ ├── smiley_left000010.spr │ ├── smiley_left000011.spr │ ├── smiley_left000012.spr │ ├── smiley_left000013.spr │ ├── smiley_left000014.spr │ ├── smiley_left000015.spr │ ├── smiley_left000016.spr │ ├── smiley_left000017.spr │ ├── smiley_left000018.spr │ ├── smiley_left000019.spr │ ├── smiley_left000020.spr │ ├── smiley_left000021.spr │ ├── smiley_left000022.spr │ ├── smiley_left000023.spr │ ├── smiley_left000024.spr │ ├── smiley_left000025.spr │ ├── smiley_left000026.spr │ ├── smiley_left000027.spr │ ├── smiley_left000028.spr │ ├── smiley_left000029.spr │ ├── smiley_left000030.spr │ ├── smiley_left000031.spr │ ├── smiley_right000000.spr │ ├── smiley_right000001.spr │ ├── smiley_right000002.spr │ ├── smiley_right000003.spr │ ├── smiley_right000004.spr │ ├── smiley_right000005.spr │ ├── smiley_right000006.spr │ ├── smiley_right000007.spr │ ├── smiley_right000008.spr │ ├── smiley_right000009.spr │ ├── smiley_right000010.spr │ ├── smiley_right000011.spr │ ├── smiley_right000012.spr │ ├── smiley_right000013.spr │ ├── smiley_right000014.spr │ ├── smiley_right000015.spr │ ├── smiley_right000016.spr │ ├── smiley_right000017.spr │ ├── smiley_right000018.spr │ ├── smiley_right000019.spr │ ├── smiley_right000020.spr │ ├── smiley_right000021.spr │ ├── smiley_right000022.spr │ ├── smiley_right000023.spr │ ├── smiley_right000024.spr │ ├── smiley_right000025.spr │ ├── smiley_right000026.spr │ ├── smiley_right000027.spr │ ├── smiley_right000028.spr │ ├── smiley_right000029.spr │ ├── smiley_right000030.spr │ ├── smiley_right000031.spr │ ├── wall1000000.spr │ ├── wall1000001.spr │ ├── wall1000002.spr │ ├── wall1000003.spr │ ├── wall1000004.spr │ ├── wall1000005.spr │ ├── wall1000006.spr │ ├── wall1000007.spr │ ├── wall1000008.spr │ ├── wall1000009.spr │ ├── wall1000010.spr │ ├── wall1000011.spr │ ├── wall1000012.spr │ ├── wall1000013.spr │ ├── wall1000014.spr │ ├── wall1000015.spr │ ├── wall1000016.spr │ ├── wall1000017.spr │ ├── wall1000018.spr │ ├── wall1000019.spr │ ├── wall1000020.spr │ ├── wall1000021.spr │ ├── wall1000022.spr │ ├── wall1000023.spr │ ├── wall1000024.spr │ ├── wall1000025.spr │ ├── wall1000026.spr │ ├── wall1000027.spr │ ├── wall1000028.spr │ ├── wall1000029.spr │ ├── wall1000030.spr │ └── wall1000031.spr ├── wall1.inc ├── wall1.pcx └── world.inc └── vgmplay ├── Makefile ├── Rules.launch ├── readme.md ├── vgmplay.asm ├── vgmplay.inc └── vgmplay.lnx /.gitignore: -------------------------------------------------------------------------------- 1 | *.equ 2 | 3 | -------------------------------------------------------------------------------- /128b/README.md: -------------------------------------------------------------------------------- 1 | # 128b 2 | 3 | "Demos" with 128byte limited size. 4 | 5 | # [outline2020](outline2020) 6 | 7 | Entry to the Outline 2020 Demo party. Rank 14 8 | 9 | # [outline2020_snd](outline2020_snd) 10 | 11 | Enhanced version of above with "sound". 12 | 13 | # [sprite_mini](sprite_mini) 14 | 15 | Minimal SUZY setup to use sprite engine. 16 | 17 | # [rasta128](rasta128) 18 | 19 | Lovebyte 2023 Entry: 3 moving raster bars. 20 | 21 | # [lynxPlasmosis](lynxPlasmosis) 22 | 23 | Quick hack for Outline 2024 -------------------------------------------------------------------------------- /128b/Rules.launch: -------------------------------------------------------------------------------- 1 | # -*-makefile-#- 2 | ifneq ($(findstring darwin,$(OSTYPE)),) 3 | SENDOBJ=$(BLL_ROOT)/sendobj.js/sendobj.js 4 | COM?=/dev/tty.usbserial-FT63V37G 5 | else 6 | SENDOBJ=sendobj 7 | COM?=COM7 8 | endif 9 | 10 | BAUD?=1000000 11 | 12 | .PHONY: send 13 | send: $(DEMO).o 14 | $(SENDOBJ) -b $(BAUD) -p $(COM) $< 15 | 16 | .PHONY: erase 17 | erase: 18 | flash_up.exe -b $(BAUD) -p $(COM) -e 19 | 20 | .PHONY: flash 21 | flash: lnx 22 | flash_up.exe -b $(BAUD) -p $(COM) -f $(DEMO).lnx 23 | 24 | .PHONY: sram 25 | sram: lnx 26 | sram_up.exe -b $(BAUD) -p $(COM) -w $(DEMO).lnx 27 | -------------------------------------------------------------------------------- /128b/lynxPlasmosis/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=plasmosis 2 | 3 | LNX=$(DEMO).lnx 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm 8 | lyxass $< 9 | 10 | bin: $(DEMO).bin 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $*.bin $*.asm 14 | 15 | lnx: $(LNX) 16 | 17 | %.lnx: %.bin 18 | lynxenc $(DEMO).bin $(DEMO).lyx 19 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 20 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 21 | @echo 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f *.lyx *~ *.equ *.o 26 | 27 | include Rules.launch 28 | -------------------------------------------------------------------------------- /128b/lynxPlasmosis/README.md: -------------------------------------------------------------------------------- 1 | ;;; LynxPlasmosis 2 | ;;; Lynx variation of plasmosis 3 | ;;; 4 | ;;; 128B 5 | ;;; Author: 42Bastian 6 | ;;; Compo: Intro 128B Oldschool 7 | ;;; Runs on Lynx II and Felix 8 | ;;; 9 | ;;; Files: 10 | ;;; plasmosis.asm - Source file (lyxass syntax) 11 | ;;; plasmosis.bin - raw file 12 | ;;; plasmosis.lnx - ROM file for flashing or Felix (or Handy) 13 | ;;; nfo.txt - this file 14 | -------------------------------------------------------------------------------- /128b/lynxPlasmosis/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/lynxPlasmosis/allff.lyx.bz2 -------------------------------------------------------------------------------- /128b/lynxPlasmosis/lynxPlasmosis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/lynxPlasmosis/lynxPlasmosis.png -------------------------------------------------------------------------------- /128b/lynxPlasmosis/lynxPlasmosis_pouet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/lynxPlasmosis/lynxPlasmosis_pouet.png -------------------------------------------------------------------------------- /128b/lynxPlasmosis/nfo.txt: -------------------------------------------------------------------------------- 1 | ;;; LynxPlasmosis 2 | ;;; Lynx variation of plasmosis 3 | ;;; 4 | ;;; 128B 5 | ;;; Author: 42Bastian 6 | ;;; Compo: Intro 128B Oldschool 7 | ;;; Runs on Lynx II and Felix 8 | ;;; 9 | ;;; Files: 10 | ;;; plasmosis.asm - Source file (lyxass syntax) 11 | ;;; plasmosis.bin - raw file 12 | ;;; plasmosis.lnx - ROM file for flashing or Felix (or Handy) 13 | ;;; nfo.txt - this file 14 | -------------------------------------------------------------------------------- /128b/lynxPlasmosis/plasmosis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/lynxPlasmosis/plasmosis.bin -------------------------------------------------------------------------------- /128b/lynxPlasmosis/plasmosis.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/lynxPlasmosis/plasmosis.lnx -------------------------------------------------------------------------------- /128b/outline2020/.gitignore: -------------------------------------------------------------------------------- 1 | *.lyx 2 | *.bin 3 | -------------------------------------------------------------------------------- /128b/outline2020/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=outline 2 | 3 | $(DEMO).o: $(DEMO).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: send 12 | send: $(DEMO).o 13 | sendobj -b 62500 -p com7 $< 14 | 15 | .PHONY: lnx 16 | lnx: $(DEMO).bin 17 | lynxenc $< $(DEMO).lyx 18 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 19 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 20 | @echo 21 | 22 | .PHONY: clean 23 | clean: 24 | rm -f *.lyx *~ 25 | 26 | .PHONY: erase 27 | erase: 28 | flash_up.exe -p com7 -e 29 | 30 | .PHONY: flash 31 | flash: lnx 32 | flash_up.exe -p com7 -f $(DEMO).lnx 33 | 34 | .PHONY: sram 35 | sram: lnx 36 | sram_up.exe -p com7 -w $(DEMO).lnx 37 | -------------------------------------------------------------------------------- /128b/outline2020/README.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Lynx 128 byte Demo 3 | # 4 | 5 | # Author: 42Bastian 6 | # Release: Outline 2020 7 | # Source (after Outline 2020 is over): https://github.com/42Bastian/lynx_hacking 8 | # Free space: 1 byte(s) 9 | # Tested on Lynx I and Lynx II with Flash, SRAM and SainT SD Card. 10 | 11 | outline.o: BLL/Handy file with header and setup (see outline.asm) which is 12 | normally done by the boot ROM. 13 | 14 | outline.lnx: Flashable image (or for Handy). 15 | -------------------------------------------------------------------------------- /128b/outline2020/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/outline2020/allff.lyx.bz2 -------------------------------------------------------------------------------- /128b/outline2020/outline.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/outline2020/outline.lnx -------------------------------------------------------------------------------- /128b/outline2020/outline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/outline2020/outline.o -------------------------------------------------------------------------------- /128b/outline2020_snd/.gitignore: -------------------------------------------------------------------------------- 1 | *.lyx 2 | *.bin 3 | -------------------------------------------------------------------------------- /128b/outline2020_snd/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/outline2020_snd/allff.lyx.bz2 -------------------------------------------------------------------------------- /128b/outline2020_snd/outline.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/outline2020_snd/outline.lnx -------------------------------------------------------------------------------- /128b/outline2020_snd/outline.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/outline2020_snd/outline.o -------------------------------------------------------------------------------- /128b/rasta128/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=rasta128 2 | 3 | all: $(DEMO).o 4 | 5 | include ../Rules.launch 6 | 7 | $(DEMO).o: $(DEMO).asm 8 | 9 | %.o: %.asm 10 | lyxass -v $< 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $@ $< 14 | 15 | lnx: $(DEMO).lnx 16 | 17 | %.lnx: %.asm 18 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 19 | lynxenc $(DEMO).bin $(DEMO).lyx 20 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 21 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 22 | rm -f $(DEMO).lyx 23 | @echo 24 | 25 | .PHONY: clean 26 | clean: 27 | rm -f *.lyx *~ 28 | -------------------------------------------------------------------------------- /128b/rasta128/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/rasta128/allff.lyx.bz2 -------------------------------------------------------------------------------- /128b/rasta128/nfo.txt: -------------------------------------------------------------------------------- 1 | rasta128 - raster bars 2 | Compo: 128 Old school 3 | Platform: Atari Lynx (Felix will do as well) 4 | Size: 126 5 | Author/Group: 42Bastian 6 | Release: L<3vebyte Party 2023 7 | Files: 8 | rasta128.lnx - Ready for Felix or Handy 9 | rasta128.bin - raw bootsector, no header 10 | ---------------------------------------------------------------------- 11 | Source will be published on https://github.com/42Bastian/lynx_hacking 12 | -------------------------------------------------------------------------------- /128b/rasta128/rasta128.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/rasta128/rasta128.bin -------------------------------------------------------------------------------- /128b/rasta128/rasta128.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/rasta128/rasta128.lnx -------------------------------------------------------------------------------- /128b/rasta128/rasta128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/rasta128/rasta128.png -------------------------------------------------------------------------------- /128b/sprite_mini/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/sprite_mini/allff.lyx.bz2 -------------------------------------------------------------------------------- /128b/sprite_mini/sprite_mini.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/sprite_mini/sprite_mini.lnx -------------------------------------------------------------------------------- /128b/sprite_mini/sprite_mini.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/128b/sprite_mini/sprite_mini.o -------------------------------------------------------------------------------- /248b/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.lyx 3 | -------------------------------------------------------------------------------- /248b/248b_bin.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/248b_bin.7z -------------------------------------------------------------------------------- /248b/Mars_Attacks/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=mars_attacks 2 | 3 | all: $(DEMO).lnx 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm 8 | @lyxass -v $< 9 | 10 | %.bin: %.asm 11 | @lyxass -d -D LNX=1 -o $@ $< 12 | 13 | loader.lyx: loader.bin 14 | @lynxenc $< $@ 15 | 16 | lnx: $(DEMO).lnx 17 | 18 | $(DEMO).lnx: $(DEMO).lyx 19 | @make_lnx $< -b0 256K -o $@ 20 | @echo 21 | 22 | $(DEMO).lyx: $(DEMO).bin loader.lyx 23 | @cat loader.lyx > $@ 24 | cat $(DEMO).bin >> $@ 25 | bzcat allff.lyx.bz2 >> $@ 26 | truncate -s 256K $@ 27 | 28 | .PHONY: clean 29 | clean: 30 | @rm -f *.lyx *~ *.o *.bin 31 | 32 | .PHONY: real-clean 33 | real-clean: clean 34 | @rm -f *.lnx 35 | 36 | include Rules.launch 37 | -------------------------------------------------------------------------------- /248b/Mars_Attacks/Mars_Attacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/Mars_Attacks/Mars_Attacks.png -------------------------------------------------------------------------------- /248b/Mars_Attacks/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/Mars_Attacks/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/Mars_Attacks/bll_init.inc: -------------------------------------------------------------------------------- 1 | ;-*-asm-*- 2 | bll_init: 3 | 4 | ;; Setup needed if loaded via BLL/Handy 5 | lda #8 6 | sta $fff9 7 | sei 8 | 9 | stz $fc08 10 | stz DISPADRL 11 | lda #$20 12 | sta DISPADRH 13 | 14 | ldx #15 15 | lda #$ff 16 | .init 17 | sta GREEN0,x 18 | sta BLUERED0,x 19 | sec 20 | sbc #$11 21 | dex 22 | bpl .init 23 | stz $fdaf 24 | 25 | lda #$ff 26 | sta $fc28 27 | sta $fc29 28 | sta $fc2a 29 | sta $fc2b 30 | lda #16 31 | sta $fc08 32 | 33 | inx 34 | ldy #8192/256 35 | .clr 36 | stz $2000,x 37 | inx 38 | bne .clr 39 | inc .clr+2 40 | dey 41 | bpl .clr 42 | 43 | ldx #0 44 | .clrsp 45 | stz $100,x 46 | dex 47 | bne .clrsp 48 | 49 | lda #$fa 50 | sta 5 51 | stz 0 52 | 53 | ldy #2 54 | lda #0 55 | tax 56 | jmp $200 57 | -------------------------------------------------------------------------------- /248b/Mars_Attacks/loader.asm: -------------------------------------------------------------------------------- 1 | * Mini loader * 2 | 3 | run $200 4 | Start: 5 | ldx #End-Start 6 | .l lda $fcb2 7 | .store sta $200,x 8 | inx 9 | bne .l 10 | inc .store+2 11 | dey 12 | bne .l 13 | End: 14 | size set End-Start 15 | free set 50-size 16 | 17 | echo "Loader size %dsize" 18 | -------------------------------------------------------------------------------- /248b/Mars_Attacks/mars_attacks.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/Mars_Attacks/mars_attacks.lnx -------------------------------------------------------------------------------- /248b/Mars_Attacks/nfo.txt: -------------------------------------------------------------------------------- 1 | ; Title: Mars Attacks 2 | ; Compo: 512b oldschool 3 | ; Author: 42Bastian 4 | ; Info: 40 columns moving voxel landscape. 5 | ; 6 | ; Files: 7 | ; mars_attacks.bin : Assembled demo 8 | ; mars_attacks.lnx : Lynx ROM 9 | ; mars_attacks.asm : Source (LYXASS syntax) 10 | ; mars_attacks.png : screen shot (Felix) 11 | ; loader.asm : loader 12 | ; loader.bin : encrypted loader 13 | ; Makefile/Rules.launch/allff.lyx.bz2 : Helpers to build 14 | -------------------------------------------------------------------------------- /248b/aMAZEing/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.lnx 3 | *.lyx 4 | -------------------------------------------------------------------------------- /248b/aMAZEing/aMAZEing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/aMAZEing/aMAZEing.png -------------------------------------------------------------------------------- /248b/aMAZEing/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/aMAZEing/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/aMAZEing/maze.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/aMAZEing/maze.lnx -------------------------------------------------------------------------------- /248b/aMAZEing/maze.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/aMAZEing/maze.o -------------------------------------------------------------------------------- /248b/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/bin/mandel.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/mandel.lnx -------------------------------------------------------------------------------- /248b/bin/mandel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/mandel.o -------------------------------------------------------------------------------- /248b/bin/mandel2.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/mandel2.lnx -------------------------------------------------------------------------------- /248b/bin/mandel2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/mandel2.o -------------------------------------------------------------------------------- /248b/bin/plasma1.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma1.lnx -------------------------------------------------------------------------------- /248b/bin/plasma1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma1.o -------------------------------------------------------------------------------- /248b/bin/plasma2.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma2.lnx -------------------------------------------------------------------------------- /248b/bin/plasma2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma2.o -------------------------------------------------------------------------------- /248b/bin/plasma3.1.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma3.1.lnx -------------------------------------------------------------------------------- /248b/bin/plasma3.1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma3.1.o -------------------------------------------------------------------------------- /248b/bin/plasma3.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma3.lnx -------------------------------------------------------------------------------- /248b/bin/plasma3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/plasma3.o -------------------------------------------------------------------------------- /248b/bin/rotz.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/rotz.lnx -------------------------------------------------------------------------------- /248b/bin/rotz.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/rotz.o -------------------------------------------------------------------------------- /248b/bin/tuef.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/tuef.lnx -------------------------------------------------------------------------------- /248b/bin/tuef.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bin/tuef.o -------------------------------------------------------------------------------- /248b/bubbleUniverse4Lynx/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=bu4l 2 | 3 | all: $(DEMO).o 4 | 5 | include ../Rules.launch 6 | 7 | $(DEMO).o: $(DEMO).asm 8 | 9 | %.o: %.asm 10 | lyxass $< 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $@ $< 14 | 15 | lnx: $(DEMO).lnx 16 | 17 | %.lnx: %.asm 18 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 19 | lynxenc $(DEMO).bin $(DEMO).lyx 20 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 21 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 22 | @echo 23 | 24 | .PHONY: clean 25 | clean: 26 | rm -f *.lyx *~ *.o *.bin 27 | -------------------------------------------------------------------------------- /248b/bubbleUniverse4Lynx/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bubbleUniverse4Lynx/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/bubbleUniverse4Lynx/bu4l.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/bubbleUniverse4Lynx/bu4l.lnx -------------------------------------------------------------------------------- /248b/demos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/demos.gif -------------------------------------------------------------------------------- /248b/dido/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=dido 2 | 3 | all: $(DEMO).o 4 | 5 | include ../Rules.launch 6 | 7 | $(DEMO).o: $(DEMO).asm 8 | 9 | %.o: %.asm 10 | lyxass -v $< 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $@ $< 14 | 15 | lnx: $(DEMO).lnx 16 | 17 | %.lnx: %.asm 18 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 19 | lynxenc $(DEMO).bin $(DEMO).lyx 20 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 21 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 22 | @echo 23 | 24 | .PHONY: clean 25 | clean: 26 | rm -f *.lyx *~ *.o *.bin 27 | -------------------------------------------------------------------------------- /248b/dido/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/dido/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/dido/dido.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/dido/dido.lnx -------------------------------------------------------------------------------- /248b/dido/dido.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/dido/dido.png -------------------------------------------------------------------------------- /248b/dido/nfo.txt: -------------------------------------------------------------------------------- 1 | ; dido - white flag 2 | ; 256 Byte (actually 249) intro 3 | ; Runs on Felix, Handy and of course read hardware. 4 | ; dido.bin - raw program 5 | ; dido.lnx - Lynx ROM 6 | ; dido.png - Full size image 7 | ; dido_pouet.jpg - Reduced size image 8 | -------------------------------------------------------------------------------- /248b/gol249/Makefile: -------------------------------------------------------------------------------- 1 | _256=gol249 2 | 3 | $(_256).o: $(_256).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: send 12 | send: $(_256).o 13 | sendobj -b 62500 -p com7 $< 14 | 15 | .PHONY: lnx 16 | .ONESHELL: 17 | lnx: $(_256).bin 18 | lynxenc $< $(_256).lyx 19 | bzcat allff.lyx.bz2 >> $(_256).lyx 20 | make_lnx $(_256).lyx -b0 256K -o $(_256).lnx 21 | @echo 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f *.lyx *~ *.bin 26 | 27 | .PHONY: erase 28 | erase: 29 | flash_up.exe -p com7 -e 30 | 31 | .PHONY: flash 32 | flash: lnx 33 | flash_up.exe -p com7 -f $(_256).lnx 34 | 35 | .PHONY: sram 36 | sram: lnx 37 | sram_up.exe -p com7 -w $(_256).lnx 38 | -------------------------------------------------------------------------------- /248b/gol249/README.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Lynx 256 byte Demo: gol249 (Game Of Life) 3 | # 4 | 5 | # Author: 42Bastian 6 | # Release: Outline 2020 7 | # Source (after Outline 2020 is over): https://github.com/42Bastian/lynx_hacking 8 | # Free space: 7 byte(s) (Lynx bootsector is limited to 249bytes) 9 | # Tested on Lynx I and Lynx II with Flash, SRAM and SainT SD Card. 10 | 11 | gol249.o: BLL/Handy file with header and setup (see gol249.asm) which is 12 | normally done by the boot ROM. 13 | 14 | gol249.lnx: Flashable image (or for Handy). 15 | -------------------------------------------------------------------------------- /248b/gol249/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/gol249/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/gol249/gol249.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/gol249/gol249.lnx -------------------------------------------------------------------------------- /248b/gol249/gol249.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/gol249/gol249.o -------------------------------------------------------------------------------- /248b/gol249/gol249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/gol249/gol249.png -------------------------------------------------------------------------------- /248b/juliaWalk/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=julia 2 | 3 | all: $(DEMO).o 4 | 5 | include ../Rules.launch 6 | 7 | $(DEMO).o: $(DEMO).asm 8 | 9 | %.o: %.asm 10 | lyxass -v $< 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $@ $< 14 | 15 | lnx: $(DEMO).lnx 16 | 17 | %.lnx: %.asm 18 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 19 | lynxenc $(DEMO).bin $(DEMO).lyx 20 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 21 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 22 | @echo 23 | 24 | .PHONY: clean 25 | clean: 26 | rm -f *.lyx *~ *.o *.bin 27 | -------------------------------------------------------------------------------- /248b/juliaWalk/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/juliaWalk/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/juliaWalk/julia.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/juliaWalk/julia.lnx -------------------------------------------------------------------------------- /248b/juliaWalk/nfo.txt: -------------------------------------------------------------------------------- 1 | JuliaWalk - Walk Julia set in "real time" 2 | Compo: Old School 8 Bit 3 | Platform: Atari Lynx (Felix will do as well) 4 | Size: 249 5 | Author/Group: 42Bastian 6 | Release: Evoke 2023 7 | Files: 8 | julia.lnx - Ready for Felix or Handy 9 | julia.bin - raw bootsector, no header 10 | ---------------------------------------------------------------------- 11 | Source will be published on https://github.com/42Bastian/lynx_hacking 12 | -------------------------------------------------------------------------------- /248b/lissa256/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=lissa256 2 | 3 | all: $(DEMO).o 4 | 5 | include ../Rules.launch 6 | 7 | $(DEMO).o: $(DEMO).asm 8 | 9 | %.o: %.asm 10 | lyxass $< 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $@ $< 14 | 15 | lnx: $(DEMO).lnx 16 | 17 | %.lnx: %.asm 18 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 19 | lynxenc $(DEMO).bin $(DEMO).lyx 20 | bzcat ../allff.lyx.bz2 >> $(DEMO).lyx 21 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 22 | @echo 23 | 24 | .PHONY: clean 25 | clean: 26 | rm -f *.lyx *~ *.o 27 | 28 | .PHONY: real-clean 29 | rm -f *.lnx *.bin 30 | -------------------------------------------------------------------------------- /248b/lissa256/lissa256.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lissa256/lissa256.lnx -------------------------------------------------------------------------------- /248b/lissa256/lissa256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lissa256/lissa256.png -------------------------------------------------------------------------------- /248b/lissa256/nfo.txt: -------------------------------------------------------------------------------- 1 | ;;; lissa256 2 | ;;; Lynx Boot-intro for Sommarhack '24 3 | ;;; 4 | ;;; Author: 42Bastian 5 | ;;; Compo: Intro 256b 6 | ;;; Runs on Felix (enable BootROM!) and real HW 7 | ;;; 8 | ;;; Files: 9 | ;;; lissa256.asm - source (lyxass syntax) 10 | ;;; lissa256.bin - raw binary 11 | ;;; lissa256.lnx - ROM image 12 | ;;; nfo.txt - this file 13 | -------------------------------------------------------------------------------- /248b/loader/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/loader/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/loader/loader.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/loader/loader.lnx -------------------------------------------------------------------------------- /248b/loader/new_bll.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/loader/new_bll.spr -------------------------------------------------------------------------------- /248b/loader/new_bll.sps: -------------------------------------------------------------------------------- 1 | 111 11 11111 11 11 1111 11 11000 2 | 1111 11 11 11 11 11 11 11 11000 3 | 11 11 11 1111 11 11 11 1111 11 11000 4 | 11 1111 11 11 11 11 11 11 11 11000 5 | 11 111 11111 111111 1111 11111 11111 -------------------------------------------------------------------------------- /248b/lovebyte21/LyLoBy/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/LyLoBy/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte21/LyLoBy/lyloby.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/LyLoBy/lyloby.bin -------------------------------------------------------------------------------- /248b/lovebyte21/LyLoBy/lyloby.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/LyLoBy/lyloby.lnx -------------------------------------------------------------------------------- /248b/lovebyte21/LyLoBy/lyloby.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/LyLoBy/lyloby.o -------------------------------------------------------------------------------- /248b/lovebyte21/LyLoBy/lyloby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/LyLoBy/lyloby.png -------------------------------------------------------------------------------- /248b/lovebyte21/LyLoBy/readme.md: -------------------------------------------------------------------------------- 1 | # LyLoBy - LYnx - LOveBYte Intro 2 | 3 | Compo: Low-end 256 byte 4 | 5 | Platform: Atari Lynx (Emulator will do, but does not look correct) 6 | 7 | Size: 248 (max. is 249 for Lynx boot sector) 8 | 9 | Language: Python 4.2 :-) 10 | 11 | Author/Group: 42Bastian 12 | 13 | Release: L<3vebyte Party 2021 #24/35 14 | 15 | ## Files 16 | 17 | lyloby.lnx - Ready for handy or mednafen or to be flashed 18 | 19 | lyloby.asm - Source 20 | 21 | lyloby.o - Handy/BLL 22 | 23 | lyloby.bin - raw exe 24 | 25 | ## What 26 | 27 | This demo uses HBL for sky and 3 sprites. 28 | -------------------------------------------------------------------------------- /248b/lovebyte21/arabeske/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/arabeske/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte21/arabeske/arabeske.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/arabeske/arabeske.lnx -------------------------------------------------------------------------------- /248b/lovebyte21/arabeske/arabeske.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/arabeske/arabeske.o -------------------------------------------------------------------------------- /248b/lovebyte21/arabeske/arabeske.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/arabeske/arabeske.png -------------------------------------------------------------------------------- /248b/lovebyte21/arabeske/readme.md: -------------------------------------------------------------------------------- 1 | # Arabeske 2 | 3 | Compo: Low-end 128 byte 4 | 5 | Platform: Atari Lynx (Emulator will do but is slooooow) 6 | 7 | Size: 128 8 | 9 | Author/Group: 42Bastian 10 | 11 | Release: L<3vebyte Party 2021 #13/16 12 | 13 | ## Files 14 | 15 | arabeske.lnx - Ready for handy or mednafen or to be flashed 16 | 17 | arabeske.asm - source 18 | 19 | arabeske.o - exe for BLL 20 | 21 | ## What 22 | 23 | This demo uses line counter for color and 1 sprite. 24 | -------------------------------------------------------------------------------- /248b/lovebyte21/minisprite/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/minisprite/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte21/minisprite/minisprite.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/minisprite/minisprite.lnx -------------------------------------------------------------------------------- /248b/lovebyte21/minisprite/minisprite.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/minisprite/minisprite.o -------------------------------------------------------------------------------- /248b/lovebyte21/minisprite/minisprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/minisprite/minisprite.png -------------------------------------------------------------------------------- /248b/lovebyte21/minisprite/readme.md: -------------------------------------------------------------------------------- 1 | ## minisprite 2 | 3 | Compo: 64 byte 4 | 5 | Platform: Atari Lynx (Emulator will do, but crash) 6 | 7 | Size: 64 8 | 9 | Author/Group: 42Bastian 10 | 11 | Release: L<3vebyte Party 2021 #31/35 12 | 13 | ## Files 14 | 15 | minisprite.lnx - Ready for handy or mednafen or to be flashed 16 | 17 | minisprite.asm - source 18 | 19 | minisprite.png - Screenshot 20 | 21 | ## What 22 | 23 | Smallest possible setup for sprite drawing 24 | -------------------------------------------------------------------------------- /248b/lovebyte21/readme.md: -------------------------------------------------------------------------------- 1 | # LoveByte21 2 | 3 | ## 64B: minisprite 4 | 5 | ## 128B: Arabeske 6 | 7 | ## 256B: TAON 8 | 9 | ## 256B: LyLoBy 10 | -------------------------------------------------------------------------------- /248b/lovebyte21/taon/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/taon/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte21/taon/readme.md: -------------------------------------------------------------------------------- 1 | # TAON - The Art Of Noise 2 | 3 | * Compo: Low-end 256 byte 4 | * Platform: Atari Lynx (Emulator will do but may not sound correctly) 5 | * Size: 249 6 | * Author/Group: 42Bastian 7 | * Release: L<3vebyte Party 2021 #34/35 8 | 9 | ## Files 10 | 11 | * taon.lnx - Ready for handy or mednafen or to be flashed 12 | * taon.asm - source 13 | * song.lb - LynxBeat song 14 | 15 | ## LynxBeat/ByteBeat interpreter. 16 | 17 | ByteBeat code: 18 | ``` 19 | // Lynxbeat uses 16bit t 20 | q = t & 0xffff, 21 | (((q>>8) & 0x8))*(q & 7) 22 | | 23 | ((((q >> 13) ^ (q >> 5))) & 97) 24 | | 25 | (((q>>13) & 0x5))*(q & 8) 26 | ``` 27 | -------------------------------------------------------------------------------- /248b/lovebyte21/taon/taon.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/taon/taon.bin -------------------------------------------------------------------------------- /248b/lovebyte21/taon/taon.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/taon/taon.lnx -------------------------------------------------------------------------------- /248b/lovebyte21/taon/taon.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte21/taon/taon.o -------------------------------------------------------------------------------- /248b/lovebyte22/PurpleRay/PurpleRay.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/PurpleRay/PurpleRay.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/PurpleRay/PurpleRay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/PurpleRay/PurpleRay.png -------------------------------------------------------------------------------- /248b/lovebyte22/PurpleRay/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/PurpleRay/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/PurpleRay/file_id.diz: -------------------------------------------------------------------------------- 1 | PurpleRay - Ray caster 2 | Compo: Low-end 256 byte 3 | Platform: Atari Lynx (Felix will do as well) 4 | Size: 249 5 | Author/Group: 42Bastian 6 | Release: L<3vebyte Party 2022 7 | Files: 8 | PurpleRay.lnx - Ready for handy or mednafen or to be flashed 9 | PurpleRay.bin - raw bootsector, no header 10 | PurpleRay.mp4 - Short video 11 | ---------------------------------------------------------------------- 12 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/checkerGlitch/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/checkerGlitch/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/checkerGlitch/checkerGlitch_16b.asm: -------------------------------------------------------------------------------- 1 | *************** 2 | * 8b "intro" 3 | **************** 4 | EFFECT1 EQU $11 5 | 6 | IFND LNX 7 | RUN $1e0 8 | lda #$20 9 | stz $fd94 10 | sta $fd95 11 | 12 | ldx #0 13 | .1 stz $2000,x 14 | dex 15 | bne .1 16 | jmp $200 17 | ORG $200 18 | ELSE 19 | RUN $200 20 | ENDIF 21 | Start:: 22 | lda $fd0a 23 | eor $fd02 24 | asl 25 | asl 26 | asl 27 | sta $fdb0 28 | bra Start 29 | End: 30 | size set End-Start 31 | free set 16-size 32 | 33 | IF free > 0 34 | REPT free 35 | dc.b 0 36 | ENDR 37 | ENDIF 38 | 39 | echo "Size:%dsize Free:%dfree" 40 | 41 | END 42 | 43 | effect1: 44 | sbc #$11 45 | asl 46 | sta $fdb0 47 | 48 | 49 | effect2: 50 | sbc #$11 51 | lsr 52 | sta $fdb0 53 | -------------------------------------------------------------------------------- /248b/lovebyte22/checkerGlitch/checkerGlitch_16b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/checkerGlitch/checkerGlitch_16b.bin -------------------------------------------------------------------------------- /248b/lovebyte22/checkerGlitch/checkerGlitch_16b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/checkerGlitch/checkerGlitch_16b.jpg -------------------------------------------------------------------------------- /248b/lovebyte22/checkerGlitch/checkerGlitch_16b.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/checkerGlitch/checkerGlitch_16b.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/checkerGlitch/checkerGlitch_16b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/checkerGlitch/checkerGlitch_16b.o -------------------------------------------------------------------------------- /248b/lovebyte22/checkerGlitch/file_id.diz: -------------------------------------------------------------------------------- 1 | checkerGlitch_16b 2 | Compo: Low-end 16B intro 3 | Platform: Atari Lynx 4 | Emulators won't do. 5 | Size: 16 6 | Author/Group: 42Bastian 7 | Release: L<3vebyte Party 2022 8 | Files: 9 | checkerGlitch_16b.lnx - Ready for Felix or to be flashed 10 | checkerGlitch_16b.bin - raw intro 11 | checkerGlitch_16b.jpg - picture, nothing "moves" 12 | ------------------------------------------------------------------------------- 13 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/moving_bar_32b/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/moving_bar_32b/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/moving_bar_32b/file_id.diz: -------------------------------------------------------------------------------- 1 | MovingBar 2 | Compo: Low-end 32B intro 3 | Platform: Atari Lynx 4 | Felix will do as well. 5 | Size: 32 6 | Author/Group: 42Bastian 7 | Release: L<3vebyte Party 2022 8 | Files: 9 | moving_bar_32b.lnx - Ready for Felix or to be flashed 10 | moving_bar_32b.bin - raw intro 11 | moving_bar_32b.mp4 - Short video 12 | ------------------------------------------------------------------------------- 13 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/moving_bar_32b/moving_bar_32b.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/moving_bar_32b/moving_bar_32b.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/moving_bar_32b/moving_bar_32b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/moving_bar_32b/moving_bar_32b.png -------------------------------------------------------------------------------- /248b/lovebyte22/pinkDive/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkDive/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/pinkDive/file_id.diz: -------------------------------------------------------------------------------- 1 | pinkDive 2 | Compo: Low-end 128B intro 3 | Platform: Atari Lynx 4 | Felix will do as well. 5 | Size: 128 6 | Author/Group: 42Bastian 7 | Release: L<3vebyte Party 2022 8 | Files: 9 | pinkDive.lnx - Ready for Felix or to be flashed 10 | pinkDive.bin - raw intro 11 | pinkDive.asm - source 12 | ------------------------------------------------------------------------------- 13 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/pinkDive/pinkDive.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkDive/pinkDive.bin -------------------------------------------------------------------------------- /248b/lovebyte22/pinkDive/pinkDive.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkDive/pinkDive.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/pinkDive/pinkDive.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkDive/pinkDive.o -------------------------------------------------------------------------------- /248b/lovebyte22/pinkDive/pinkDive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkDive/pinkDive.png -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/.gitignore: -------------------------------------------------------------------------------- 1 | micro_loader.bin 2 | *.lyx 3 | -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTris/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/file_id.diz: -------------------------------------------------------------------------------- 1 | pinkTris - A tetris like game 2 | Compo: Low-end Nano-Game 3 | Platform: Atari Lynx 4 | Felix will do as well. 5 | With Lynx GD the borders are't visible as colortable is cleared by FW. 6 | Lynx must be cold booted else left/right is swapped! 7 | Size: 256 8 | Author/Group: 42Bastian 9 | Release: L<3vebyte Party 2022 10 | Files: 11 | PinkTris.lnx - Ready for handy or mednafen or to be flashed 12 | PinkTris.bin - raw game 13 | PinkTris.mp4 - Short video 14 | micro_loader.asm - Loader for the actual game (Lynx boot code is max. 249) 15 | ------------------------------------------------------------------------------- 16 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/micro_loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTris/micro_loader.bin -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/pinkTris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTris/pinkTris.png -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/pinktris.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTris/pinktris.bin -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/pinktris.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTris/pinktris.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTris/pinktris.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTris/pinktris.o -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTunnel/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTunnel/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTunnel/file_id.diz: -------------------------------------------------------------------------------- 1 | pinkTunnel - Tunnel 2 | Compo: Out of compop 3 | Platform: Atari Lynx (Felix will do as well) 4 | Size: 190 5 | Author/Group: 42Bastian 6 | Release: L<3vebyte Party 2022 7 | Files: 8 | pinkTunnel.lnx - Ready for handy or mednafen or to be flashed 9 | pinkTunnel.bin - raw bootsector, no header 10 | pinkTunnel.asm - Source 11 | ---------------------------------------------------------------------- 12 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTunnel/pinkTunnel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTunnel/pinkTunnel.bin -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTunnel/pinkTunnel.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTunnel/pinkTunnel.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTunnel/pinkTunnel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTunnel/pinkTunnel.o -------------------------------------------------------------------------------- /248b/lovebyte22/pinkTunnel/pinkTunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/pinkTunnel/pinkTunnel.png -------------------------------------------------------------------------------- /248b/lovebyte22/splitscreen/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/splitscreen/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/splitscreen/file_id.diz: -------------------------------------------------------------------------------- 1 | splitscreen_16b 2 | Compo: Low-end 16B intro 3 | Platform: Atari Lynx 4 | Emulators won't do. 5 | Size: 16 6 | Author/Group: 42Bastian 7 | Release: L<3vebyte Party 2022 8 | Files: 9 | splitscreen_16b.lnx - Ready for Felix or to be flashed 10 | splitscreen_16b.bin - raw intro 11 | splitscreen_16b.jpg - picture, nothing moves 12 | ------------------------------------------------------------------------------- 13 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/splitscreen/splitscreen_16b.asm: -------------------------------------------------------------------------------- 1 | *************** 2 | * 16b "intro" 3 | **************** 4 | EFFECT1 EQU $11 5 | 6 | IFND LNX 7 | RUN $1e0 8 | ldx #0 9 | ldy #$20 10 | .1 stz $2000,x 11 | dex 12 | bne .1 13 | inc .1+2 14 | dey 15 | bne .1 16 | stz $fda0 17 | stz $fdb0 18 | jmp $200 19 | ORG $200 20 | ELSE 21 | RUN $200 22 | ENDIF 23 | Start:: 24 | stz $fdb0 25 | 26 | .2 dec $fdb0 27 | nop 28 | lda $fd0a 29 | cmp #40 30 | bcc .2 31 | 32 | bra Start 33 | End: 34 | size set End-Start 35 | free set 16-size 36 | 37 | IF free > 0 38 | REPT free 39 | dc.b 0 40 | ENDR 41 | ENDIF 42 | 43 | echo "Size:%dsize Free:%dfree" 44 | 45 | END 46 | -------------------------------------------------------------------------------- /248b/lovebyte22/splitscreen/splitscreen_16b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/splitscreen/splitscreen_16b.bin -------------------------------------------------------------------------------- /248b/lovebyte22/splitscreen/splitscreen_16b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/splitscreen/splitscreen_16b.jpg -------------------------------------------------------------------------------- /248b/lovebyte22/splitscreen/splitscreen_16b.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/splitscreen/splitscreen_16b.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/splitscreen/splitscreen_16b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/splitscreen/splitscreen_16b.o -------------------------------------------------------------------------------- /248b/lovebyte22/steps_8b/file_id.diz: -------------------------------------------------------------------------------- 1 | steps_8b 2 | Compo: Low-end 8B intro 3 | Platform: Atari Lynx 4 | Emulators won't do. 5 | Size: 16 6 | Author/Group: 42Bastian 7 | Release: L<3vebyte Party 2022 8 | Files: 9 | steps_8b.lnx - Ready for Felix or to be flashed 10 | steps_8b.bin - raw intro 11 | steps_8b.jpg - picture, nothing moves 12 | ------------------------------------------------------------------------------- 13 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/steps_8b/steps_8b.asm: -------------------------------------------------------------------------------- 1 | *************** 2 | * 8b "intro" 3 | **************** 4 | EFFECT1 EQU $11 5 | 6 | IFND LNX 7 | RUN $1e0 8 | ldx #0 9 | ldy #$20 10 | .1 stz $2000,x 11 | dex 12 | bne .1 13 | inc .1+2 14 | dey 15 | bne .1 16 | stz $fda0 17 | stz $fdb0 18 | jmp $200 19 | ORG $200 20 | ELSE 21 | RUN $200 22 | ENDIF 23 | Start:: 24 | lsr 25 | dec 26 | dec 27 | sta $fdb0 28 | bra Start 29 | End: 30 | size set End-Start 31 | free set 8-size 32 | 33 | IF free > 0 34 | REPT free 35 | dc.b 0 36 | ENDR 37 | ENDIF 38 | 39 | echo "Size:%dsize Free:%dfree" 40 | 41 | END 42 | -------------------------------------------------------------------------------- /248b/lovebyte22/steps_8b/steps_8b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/steps_8b/steps_8b.bin -------------------------------------------------------------------------------- /248b/lovebyte22/steps_8b/steps_8b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/steps_8b/steps_8b.jpg -------------------------------------------------------------------------------- /248b/lovebyte22/steps_8b/steps_8b.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/steps_8b/steps_8b.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/waves_8b/file_id.diz: -------------------------------------------------------------------------------- 1 | waves_8b 2 | Compo: Low-end 8B intro 3 | Platform: Atari Lynx 4 | Emulators won't do. 5 | Size: 16 6 | Author/Group: 42Bastian 7 | Release: L<3vebyte Party 2022 8 | Files: 9 | waves_8b.lnx - Ready for Felix or to be flashed 10 | waves_8b.bin - raw intro 11 | waves_8b.mp4 - short video 12 | ------------------------------------------------------------------------------- 13 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/waves_8b/waves_8b.asm: -------------------------------------------------------------------------------- 1 | *************** 2 | * 8b "intro" 3 | **************** 4 | EFFECT1 EQU $11 5 | 6 | IFND LNX 7 | RUN $1e0 8 | ldx #0 9 | ldy #$20 10 | .1 stz $2000,x 11 | dex 12 | bne .1 13 | inc .1+2 14 | dey 15 | bne .1 16 | stz $fda0 17 | stz $fdb0 18 | jmp $200 19 | ORG $200 20 | ELSE 21 | RUN $200 22 | ENDIF 23 | Start:: 24 | adc #$78 25 | asl 26 | sta $fdb0 27 | bra Start 28 | End: 29 | size set End-Start 30 | free set 8-size 31 | 32 | IF free > 0 33 | REPT free 34 | dc.b 0 35 | ENDR 36 | ENDIF 37 | 38 | echo "Size:%dsize Free:%dfree" 39 | 40 | END 41 | 42 | effect1: 43 | sbc #$11 44 | asl 45 | sta $fdb0 46 | 47 | 48 | effect2: 49 | sbc #$11 50 | lsr 51 | sta $fdb0 52 | -------------------------------------------------------------------------------- /248b/lovebyte22/waves_8b/waves_8b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/waves_8b/waves_8b.bin -------------------------------------------------------------------------------- /248b/lovebyte22/waves_8b/waves_8b.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/waves_8b/waves_8b.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/waves_8b/waves_8b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/waves_8b/waves_8b.png -------------------------------------------------------------------------------- /248b/lovebyte22/xor_scroll/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/xor_scroll/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte22/xor_scroll/file_id.diz: -------------------------------------------------------------------------------- 1 | XOR Scroll 2 | Compo: Low-end 64B intro 3 | Platform: Atari Lynx 4 | Felix will do as well. 5 | Size: 64 (2 bytes only filler) 6 | Author/Group: 42Bastian 7 | Release: L<3vebyte Party 2022 8 | Files: 9 | xor_scroll.lnx - Ready for Felix or to be flashed 10 | xor_scroll.bin - raw intro 11 | xor_scroll.asm - source 12 | xor_scroll.mp4 - Short video (to be done) 13 | ------------------------------------------------------------------------------- 14 | Source will be published on https://github.com/42Bastian/lynx_hacking -------------------------------------------------------------------------------- /248b/lovebyte22/xor_scroll/xor_scroll.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/xor_scroll/xor_scroll.bin -------------------------------------------------------------------------------- /248b/lovebyte22/xor_scroll/xor_scroll.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/xor_scroll/xor_scroll.lnx -------------------------------------------------------------------------------- /248b/lovebyte22/xor_scroll/xor_scroll.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/xor_scroll/xor_scroll.o -------------------------------------------------------------------------------- /248b/lovebyte22/xor_scroll/xor_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte22/xor_scroll/xor_scroll.png -------------------------------------------------------------------------------- /248b/lovebyte24/3days/3days.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/3days/3days.lnx -------------------------------------------------------------------------------- /248b/lovebyte24/3days/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=3days 2 | 3 | $(DEMO).o: $(DEMO).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | lnx: $(DEMO).lnx 12 | 13 | %.lnx: %.asm 14 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 15 | lynxenc $(DEMO).bin $(DEMO).lyx 16 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 17 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 18 | @echo 19 | 20 | .PHONY: clean 21 | clean: 22 | rm -f *.lyx *~ *.lnx *.o 23 | 24 | include ../..//Rules.launch 25 | -------------------------------------------------------------------------------- /248b/lovebyte24/3days/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/3days/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/lovebyte24/bubbleUniverse4LynxV2/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=bu4l 2 | 3 | all: $(DEMO).o 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm 8 | lyxass $< 9 | 10 | %.bin: %.asm 11 | lyxass -d -D LNX=1 -o $@ $< 12 | 13 | lnx: $(DEMO).lnx 14 | 15 | %.lnx: %.asm 16 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 17 | lynxenc $(DEMO).bin $(DEMO).lyx 18 | bzcat ../../allff.lyx.bz2 >> $(DEMO).lyx 19 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 20 | @echo 21 | 22 | .PHONY: clean 23 | clean: 24 | rm -f *.lyx *~ *.o 25 | 26 | include ../../Rules.launch 27 | -------------------------------------------------------------------------------- /248b/lovebyte24/bubbleUniverse4LynxV2/bu4l.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/bubbleUniverse4LynxV2/bu4l.lnx -------------------------------------------------------------------------------- /248b/lovebyte24/bubbleUniverse4LynxV2/bu4l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/bubbleUniverse4LynxV2/bu4l.png -------------------------------------------------------------------------------- /248b/lovebyte24/bubbleUniverse4LynxV2/nfo.txt: -------------------------------------------------------------------------------- 1 | ; Title: bu4lv2 2 | ; Compo: 256b oldschool 3 | ; Author: 42Bastian 4 | ; Info: Bubble Universe for Lynx, reloaded. 5 | ; 6 | ; Files: 7 | ; bu4l.bin : Assembled intro 8 | ; bu4l.lnx : Lynx ROM (runs in Felix, from GD and direct card) 9 | ; bu4l.asm : Source (LYXASS syntax) 10 | ; bu4l.png : screen shot 11 | -------------------------------------------------------------------------------- /248b/lovebyte24/lynxYARC512/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=lynxYARC512 2 | 3 | all: $(DEMO).lnx 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm line.inc 8 | lyxass -v $< 9 | 10 | %.bin: %.asm 11 | lyxass -d -D LNX=1 -o $@ $< 12 | 13 | loader.lyx: loader.bin 14 | lynxenc $< $@ 15 | 16 | lnx: $(DEMO).lnx 17 | 18 | $(DEMO).lnx: $(DEMO).lyx 19 | make_lnx $< -b0 256K -o $@ 20 | @echo 21 | 22 | $(DEMO).lyx: $(DEMO).bin loader.lyx 23 | cat loader.lyx > $@ 24 | cat $(DEMO).bin >> $@ 25 | bzcat ../../allff.lyx.bz2 >> $@ 26 | truncate -s 256K $@ 27 | 28 | .PHONY: clean 29 | clean: 30 | rm -f *.lyx *~ *.o 31 | 32 | include ../../Rules.launch 33 | -------------------------------------------------------------------------------- /248b/lovebyte24/lynxYARC512/loader.asm: -------------------------------------------------------------------------------- 1 | * Mini loader * 2 | 3 | run $200 4 | Start: 5 | ldx #End-Start 6 | .l lda $fcb2 7 | .store sta $200,x 8 | inx 9 | bne .l 10 | inc .store+2 11 | dey 12 | bne .l 13 | End: 14 | size set End-Start 15 | free set 50-size 16 | 17 | echo "Loader size %dsize" 18 | -------------------------------------------------------------------------------- /248b/lovebyte24/lynxYARC512/lynxYARC512.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/lynxYARC512/lynxYARC512.lnx -------------------------------------------------------------------------------- /248b/lovebyte24/lynxYARC512/lynxYARC512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/lynxYARC512/lynxYARC512.png -------------------------------------------------------------------------------- /248b/lovebyte24/lynxYARC512/nfo.txt: -------------------------------------------------------------------------------- 1 | ; Title: lynxYARC512 2 | ; Compo: 512b oldschool 3 | ; Author: 42Bastian 4 | ; Info: Total size with loader is 512b - THX to pestis for tips! 5 | ; Lines are single sprites! 6 | ; 7 | ; Files: 8 | ; lynxYARC512.bin : Assembled intro 9 | ; lynxYARC512.lnx : Lynx ROM (runs in Felix, from GD and direct card) 10 | ; lynxYARC512.asm : Source (LYXASS syntax) 11 | ; lynxYARC512.png : screen shot 12 | 13 | ; loader.bin : Loader needed as Lynx ROM loads at max 249 bytes 14 | ; loader.asm : Source of above 15 | -------------------------------------------------------------------------------- /248b/lovebyte24/readme.md: -------------------------------------------------------------------------------- 1 | # LoveByte24 2 | 3 | ## Invitation 4 | 5 | [3days](3days) - reworked LyLoBy intro 6 | 7 | ## 64B 8 | 9 | [starfield64](starfield64) - A moving starfield. 10 | 11 | ## 256B 12 | 13 | [bubbleUniverse4LynxV2](bubbleUniverse4LynxV2) Extended bubble univers version. 14 | 15 | ## 512B 16 | 17 | [lynxYARC512](lynxYARC512) - YetAnotherRotatingCube in 512b 18 | 19 | ## Nanogame 20 | 21 | [schiebefix](schiebefix) A puzzle-15 game 22 | -------------------------------------------------------------------------------- /248b/lovebyte24/schiebefix/.gitignore: -------------------------------------------------------------------------------- 1 | *.lnx 2 | *.bin 3 | *.lyx 4 | -------------------------------------------------------------------------------- /248b/lovebyte24/schiebefix/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=sf 2 | 3 | LNX=$(DEMO).lnx 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm 8 | lyxass $< 9 | 10 | bin: $(DEMO).bin 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $*.bin $*.asm 14 | 15 | lnx: $(LNX) 16 | 17 | %.lnx: %.bin 18 | lynxenc $(DEMO).bin $(DEMO).lyx 19 | bzcat ../../allff.lyx.bz2 >> $(DEMO).lyx 20 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 21 | @echo 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f *.lyx *~ *.equ *.o 26 | 27 | include ../../Rules.launch 28 | -------------------------------------------------------------------------------- /248b/lovebyte24/schiebefix/nfo.txt: -------------------------------------------------------------------------------- 1 | ; Title: schiebefix 2 | ; Compo: nanogame oldschool 3 | ; Author: 42Bastian 4 | ; Info: This is the 15-puzzle where you have to restore the picure by moving the 5 | ; tiles arround. Not every mixup is solvable! 6 | ; 7 | ; Files: 8 | ; sf.bin : Assembled intro 9 | ; sf.lnx : Lynx ROM (runs in Felix, from GD and direct card) 10 | ; sf.asm : Source (LYXASS syntax) 11 | ; sf.png : screen shot 12 | -------------------------------------------------------------------------------- /248b/lovebyte24/schiebefix/schiebefix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/schiebefix/schiebefix.png -------------------------------------------------------------------------------- /248b/lovebyte24/schiebefix/sf.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/schiebefix/sf.lnx -------------------------------------------------------------------------------- /248b/lovebyte24/starfield64/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=starfield 2 | 3 | LNX=$(DEMO).lnx 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm 8 | lyxass $< 9 | 10 | bin: $(DEMO).bin 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $*.bin $*.asm 14 | 15 | lnx: $(LNX) 16 | 17 | %.lnx: %.bin 18 | lynxenc $(DEMO).bin $(DEMO).lyx 19 | bzcat ../../allff.lyx.bz2 >> $(DEMO).lyx 20 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 21 | @echo 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f *.lyx *~ *.equ *.o 26 | 27 | include ../../Rules.launch 28 | -------------------------------------------------------------------------------- /248b/lovebyte24/starfield64/nfo.txt: -------------------------------------------------------------------------------- 1 | ; Title: starfield64 2 | ; Compo: 64b oldschool 3 | ; Author: 42Bastian 4 | ; Info: This is an accident, but came out nice, so submited it ;-) 5 | ; 6 | ; Files: 7 | ; starfield.bin : Assembled intro 8 | ; starfield.lnx : Lynx ROM (runs in Felix, from GD and direct card) 9 | ; starfield.asm : Source (LYXASS syntax) 10 | ; starfield.png : screen shot 11 | -------------------------------------------------------------------------------- /248b/lovebyte24/starfield64/starfield.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/starfield64/starfield.lnx -------------------------------------------------------------------------------- /248b/lovebyte24/starfield64/starfield64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/starfield64/starfield64.png -------------------------------------------------------------------------------- /248b/lovebyte24/starfield64/starfield64_smalll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/lovebyte24/starfield64/starfield64_smalll.png -------------------------------------------------------------------------------- /248b/mandel/Makefile: -------------------------------------------------------------------------------- 1 | _256=mandel 2 | 3 | $(_256).o: $(_256).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: send 12 | send: $(_256).o 13 | sendobj -b 62500 -p com7 $< 14 | 15 | .PHONY: lnx 16 | lnx: $(_256).bin 17 | lynxenc $< $(_256).lyx 18 | bzcat allff.lyx.bz2 >> $(_256).lyx 19 | make_lnx $(_256).lyx -b0 256K -o $(_256).lnx 20 | @echo 21 | 22 | .PHONY: clean 23 | clean: 24 | rm -f *.lyx *~ *.bin 25 | 26 | .PHONY: erase 27 | erase: 28 | flash_up.exe -p com7 -e 29 | 30 | .PHONY: flash 31 | flash: lnx 32 | flash_up.exe -p com7 -f $(_256).lnx 33 | 34 | .PHONY: sram 35 | sram: lnx 36 | sram_up.exe -p com7 -w $(_256).lnx 37 | -------------------------------------------------------------------------------- /248b/mandel/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/mandel/mandel.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel/mandel.lnx -------------------------------------------------------------------------------- /248b/mandel/mandel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel/mandel.o -------------------------------------------------------------------------------- /248b/mandel/mandel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel/mandel.png -------------------------------------------------------------------------------- /248b/mandel2/Makefile: -------------------------------------------------------------------------------- 1 | _256=mandel 2 | 3 | $(_256).o: $(_256).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: send 12 | send: $(_256).o 13 | sendobj -b 62500 -p com7 $< 14 | 15 | .PHONY: lnx 16 | lnx: $(_256).bin 17 | lynxenc $< $(_256).lyx 18 | bzcat allff.lyx.bz2 >> $(_256).lyx 19 | make_lnx $(_256).lyx -b0 256K -o $(_256).lnx 20 | @echo 21 | 22 | .PHONY: clean 23 | clean: 24 | rm -f *.lyx *~ *.bin 25 | 26 | .PHONY: erase 27 | erase: 28 | flash_up.exe -p com7 -e 29 | 30 | .PHONY: flash 31 | flash: lnx 32 | flash_up.exe -p com7 -f $(_256).lnx 33 | 34 | .PHONY: sram 35 | sram: lnx 36 | sram_up.exe -p com7 -w $(_256).lnx 37 | -------------------------------------------------------------------------------- /248b/mandel2/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel2/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/mandel2/mandel.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel2/mandel.lnx -------------------------------------------------------------------------------- /248b/mandel2/mandel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel2/mandel.o -------------------------------------------------------------------------------- /248b/mandel2/mandel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/mandel2/mandel.png -------------------------------------------------------------------------------- /248b/noise/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/noise/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/noise/noise.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/noise/noise.bin -------------------------------------------------------------------------------- /248b/noise/noise.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/noise/noise.lnx -------------------------------------------------------------------------------- /248b/noise/readme.md: -------------------------------------------------------------------------------- 1 | ## NOISE 2 | 3 | Author: 42Bastian 4 | 5 | Release: SillyVenture 2020+1 6 | 7 | Raw Size: 244 Bytes 8 | -------------------------------------------------------------------------------- /248b/outline2025/parallax/.gitignore: -------------------------------------------------------------------------------- 1 | *.lyx 2 | -------------------------------------------------------------------------------- /248b/outline2025/parallax/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=parallax 2 | 3 | all: $(DEMO).o 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm 8 | lyxass $< 9 | 10 | %.bin: %.asm 11 | lyxass -d -D LNX=1 -o $@ $< 12 | 13 | lnx: $(DEMO).lnx 14 | 15 | %.lnx: %.asm 16 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 17 | lynxenc $(DEMO).bin $(DEMO).lyx 18 | bzcat ../../allff.lyx.bz2 >> $(DEMO).lyx 19 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 20 | @echo 21 | 22 | .PHONY: clean 23 | clean: 24 | rm -f *.lyx *~ *.o 25 | 26 | include ../../Rules.launch 27 | -------------------------------------------------------------------------------- /248b/outline2025/parallax/nfo.txt: -------------------------------------------------------------------------------- 1 | ; Title: parallax 2 | ; Compo: 256b oldschool 3 | ; Author: 42Bastian 4 | ; Info: Lynx-pwr: 3 full-screen sprite + one text sprite, acutal size 249bytes 5 | ; 6 | ; Files: 7 | ; parallax.bin : Assembled intro 8 | ; parallax.lnx : Lynx ROM (runs in Felix, from GD and direct card) 9 | ; parallax.asm : Source (LYXASS syntax) 10 | ; parallax.png : screen shot 11 | ; bll_init.inc : development helper, not part of .bin 12 | -------------------------------------------------------------------------------- /248b/outline2025/parallax/parallax.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/outline2025/parallax/parallax.lnx -------------------------------------------------------------------------------- /248b/outline2025/parallax/parallax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/outline2025/parallax/parallax.png -------------------------------------------------------------------------------- /248b/outline2025/riml/.gitignore: -------------------------------------------------------------------------------- 1 | *.lyx 2 | -------------------------------------------------------------------------------- /248b/outline2025/riml/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=riml 2 | 3 | all: $(DEMO).o 4 | 5 | include ../../Rules.launch 6 | 7 | $(DEMO).o: $(DEMO).asm 8 | 9 | %.o: %.asm 10 | lyxass $< 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $@ $< 14 | 15 | lnx: $(DEMO).lnx 16 | 17 | %.lnx: %.asm 18 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 19 | lynxenc $(DEMO).bin $(DEMO).lyx 20 | bzcat ../../allff.lyx.bz2 >> $(DEMO).lyx 21 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 22 | @echo 23 | 24 | .PHONY: clean 25 | clean: 26 | rm -f *.lyx *~ *.o 27 | -------------------------------------------------------------------------------- /248b/outline2025/riml/nfo.txt: -------------------------------------------------------------------------------- 1 | ; Title: riml - Raster ist mein Laster 2 | ; Compo: 256b oldschool 3 | ; Author: 42Bastian 4 | ; Info: Raster bars waving "raster" 5 | ; 6 | ; Files: 7 | ; riml.bin : Assembled intro 8 | ; riml.lnx : Lynx ROM (runs in Felix, from GD and direct card) 9 | ; riml.asm : Source (LYXASS syntax) 10 | ; riml.png : screen shot 11 | ; bll_init.inc : development helper, not part of .bin 12 | -------------------------------------------------------------------------------- /248b/outline2025/riml/riml.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/outline2025/riml/riml.lnx -------------------------------------------------------------------------------- /248b/outline2025/riml/riml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/outline2025/riml/riml.png -------------------------------------------------------------------------------- /248b/plasma1/.gitignore: -------------------------------------------------------------------------------- 1 | *.lyx 2 | *.bin 3 | -------------------------------------------------------------------------------- /248b/plasma1/Makefile: -------------------------------------------------------------------------------- 1 | plasma.o: plasma.asm 2 | 3 | %.o: %.asm 4 | lyxass -v $< 5 | 6 | %.bin: %.asm 7 | lyxass -d -D LNX=1 -o $@ $< 8 | 9 | .PHONY: send 10 | send: plasma.o 11 | sendobj -b 62500 -p com7 $< 12 | 13 | .PHONY: lnx 14 | lnx: plasma.bin 15 | lynxenc $< plasma.lyx 16 | make_lnx plasma.lyx -b0 256K -o plasma.lnx 17 | 18 | .PHONY: clean 19 | clean: 20 | rm -f *.lyx *~ *.bin 21 | -------------------------------------------------------------------------------- /248b/plasma1/plasma.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma1/plasma.lnx -------------------------------------------------------------------------------- /248b/plasma1/plasma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma1/plasma.o -------------------------------------------------------------------------------- /248b/plasma1/sin.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | #define PI 3.1415926535897935f 5 | int main(void) 6 | { 7 | float rad; 8 | int x; 9 | 10 | for(x = 0; x < 32; ++x){ 11 | float si = sin(2.0f*PI/32*x); 12 | int pen = (int)(8+7*si); 13 | printf("$%x,",pen); 14 | if ( (x & 7) == 7 ) printf("\b\n"); 15 | } 16 | printf("\n"); 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /248b/plasma2/.gitignore: -------------------------------------------------------------------------------- 1 | *.lyx 2 | *.bin 3 | -------------------------------------------------------------------------------- /248b/plasma2/Makefile: -------------------------------------------------------------------------------- 1 | plasma.o: plasma.asm 2 | 3 | %.o: %.asm 4 | lyxass -v $< 5 | 6 | %.bin: %.asm 7 | lyxass -d -D LNX=1 -o $@ $< 8 | 9 | .PHONY: send 10 | send: plasma.o 11 | sendobj -b 62500 -p com7 $< 12 | 13 | .PHONY: lnx 14 | lnx: plasma.bin 15 | lynxenc $< plasma.lyx 16 | make_lnx plasma.lyx -b0 256K -o plasma.lnx 17 | 18 | .PHONY: clean 19 | clean: 20 | rm -f *.lyx *~ *.bin 21 | -------------------------------------------------------------------------------- /248b/plasma2/plasma.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma2/plasma.lnx -------------------------------------------------------------------------------- /248b/plasma2/plasma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma2/plasma.o -------------------------------------------------------------------------------- /248b/plasma2/sin.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | #define PI 3.1415926535897935f 5 | int main(void) 6 | { 7 | float rad; 8 | int x; 9 | 10 | for(x = 0; x < 32; ++x){ 11 | float si = sin(2.0f*PI/32*x); 12 | int pen = (int)(8+7*si); 13 | printf("$%x,",pen); 14 | if ( (x & 7) == 7 ) printf("\b\n"); 15 | } 16 | printf("\n"); 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /248b/plasma3.1/Makefile: -------------------------------------------------------------------------------- 1 | _256=plasma 2 | 3 | $(_256).o: $(_256).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: send 12 | send: $(_256).o 13 | sendobj -b 62500 -p com7 $< 14 | 15 | .PHONY: lnx 16 | .ONESHELL: 17 | lnx: $(_256).bin 18 | lynxenc $< $(_256).lyx 19 | bzcat allff.lyx.bz2 >> $(_256).lyx 20 | make_lnx $(_256).lyx -b0 256K -o $(_256).lnx 21 | @echo 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f *.lyx *~ *.bin 26 | 27 | .PHONY: erase 28 | erase: 29 | flash_up.exe -p com7 -e 30 | 31 | .PHONY: flash 32 | flash: lnx 33 | flash_up.exe -p com7 -f $(_256).lnx 34 | 35 | .PHONY: sram 36 | sram: lnx 37 | sram_up.exe -p com7 -w $(_256).lnx 38 | -------------------------------------------------------------------------------- /248b/plasma3.1/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3.1/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/plasma3.1/plasma.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3.1/plasma.lnx -------------------------------------------------------------------------------- /248b/plasma3.1/plasma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3.1/plasma.o -------------------------------------------------------------------------------- /248b/plasma3.1/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3.1/plasma.png -------------------------------------------------------------------------------- /248b/plasma3/Makefile: -------------------------------------------------------------------------------- 1 | _256=plasma 2 | 3 | $(_256).o: $(_256).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: send 12 | send: $(_256).o 13 | sendobj -b 62500 -p com7 $< 14 | 15 | .PHONY: lnx 16 | .ONESHELL: 17 | lnx: $(_256).bin 18 | lynxenc $< $(_256).lyx 19 | bzcat allff.lyx.bz2 >> $(_256).lyx 20 | make_lnx $(_256).lyx -b0 256K -o $(_256).lnx 21 | @echo 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f *.lyx *~ *.bin 26 | 27 | .PHONY: erase 28 | erase: 29 | flash_up.exe -p com7 -e 30 | 31 | .PHONY: flash 32 | flash: lnx 33 | flash_up.exe -p com7 -f $(_256).lnx 34 | 35 | .PHONY: sram 36 | sram: lnx 37 | sram_up.exe -p com7 -w $(_256).lnx 38 | -------------------------------------------------------------------------------- /248b/plasma3/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/plasma3/plasma.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3/plasma.lnx -------------------------------------------------------------------------------- /248b/plasma3/plasma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3/plasma.o -------------------------------------------------------------------------------- /248b/plasma3/plasma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/plasma3/plasma.png -------------------------------------------------------------------------------- /248b/rottoprojoLynx/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=rottoprojoLynx 2 | 3 | $(DEMO).o: $(DEMO).asm 4 | 5 | include ../Rules.launch 6 | 7 | %.o: %.asm 8 | lyxass -v $< 9 | 10 | %.bin: %.asm 11 | lyxass -d -D LNX=1 -o $@ $< 12 | 13 | 14 | lnx: $(DEMO).lnx 15 | 16 | %.lnx: %.asm 17 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 18 | lynxenc $(DEMO).bin $(DEMO).lyx 19 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 20 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 21 | @echo 22 | 23 | .PHONY: clean 24 | clean: 25 | rm -f *.lyx *~ *.bin *.o 26 | -------------------------------------------------------------------------------- /248b/rottoprojoLynx/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/rottoprojoLynx/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/rottoprojoLynx/nfo.txt: -------------------------------------------------------------------------------- 1 | rottoprojoLynx - An adaption of rottoprojoXL/64 2 | Platform: Atari Lynx (Felix will do as well), will not work from LynxGD 3 | Size: 249 4 | Author/Group: 42Bastian 5 | Release: Sillyventure 2023 SE 6 | Files: 7 | rottoprojoLynx.bin - raw image 8 | rottoprojoLynx.lnx - ready to flash/run with Felix 9 | ---------------------------------------------------------------------- 10 | Source will be published on https://github.com/42Bastian/lynx_hacking 11 | -------------------------------------------------------------------------------- /248b/rottoprojoLynx/rottoprojoLynx.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/rottoprojoLynx/rottoprojoLynx.lnx -------------------------------------------------------------------------------- /248b/rotz/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=rotz 2 | 3 | $(DEMO).o: $(DEMO).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: lnx 12 | .ONESHELL: 13 | lnx: $(DEMO).bin 14 | lynxenc $< $(DEMO).lyx 15 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 16 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 17 | @echo 18 | 19 | .PHONY: clean 20 | clean: 21 | rm -f *.lyx *~ *.o 22 | 23 | include ../Rules.launch 24 | -------------------------------------------------------------------------------- /248b/rotz/README.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Lynx 256 byte Demo: 3 | * rotz! - ROToZoomer (with sound)! 4 | # 5 | 6 | # Author: 42Bastian 7 | # Release: SOMMARHACK 2020 8 | # Source (after compo is over): https://github.com/42Bastian/lynx_hacking 9 | # Free space: 7 byte(s) (Lynx bootsector is limited to 249bytes) 10 | # Tested on Lynx II with Flash and SRAM card. 11 | 12 | rotz.bin: Raw binary, no headers 13 | 14 | rotz.o: BLL/Handy file with header and setup (see rotz.asm) which is 15 | normally done by the boot ROM. 16 | 17 | rotz.lnx: Flashable image (or for Handy). 18 | -------------------------------------------------------------------------------- /248b/rotz/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/rotz/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/rotz/rotz.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/rotz/rotz.asm -------------------------------------------------------------------------------- /248b/rotz/rotz.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/rotz/rotz.bin -------------------------------------------------------------------------------- /248b/rotz/rotz.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/rotz/rotz.lnx -------------------------------------------------------------------------------- /248b/sierlynxi/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sierlynxi/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/sierlynxi/sierlynxi.asm: -------------------------------------------------------------------------------- 1 | *************** 2 | * 32Byte 3 | **************** 4 | 5 | ;;; ROM sets this address 6 | screen0 equ $2000 7 | 8 | run $200 9 | 10 | IFND LNX 11 | ;; Setup needed if loaded via BLL/Handy 12 | lda #8 13 | sta $fff9 14 | cli 15 | lda #$20 16 | stz $fd94 17 | sta $fd95 18 | stz $fd50 19 | ldy #2 20 | ENDIF 21 | 22 | Start:: 23 | ldy #31 24 | .00 tya 25 | sta $fda0,y 26 | dey 27 | bpl .00 28 | .0 29 | lda #$20 30 | sta 1 31 | asl 32 | tay 33 | .1 34 | lda 0 35 | and 1 36 | sta (0) 37 | inc 0 38 | bne .1 39 | inc 1 40 | dey 41 | bne .1 42 | bra .0 43 | End: 44 | size set End-Start 45 | free set 32-size 46 | 47 | IF free > 0 48 | REPT free 49 | dc.b 0 50 | ENDR 51 | ENDIF 52 | 53 | echo "Size:%dsize Free:%dfree" 54 | -------------------------------------------------------------------------------- /248b/sierlynxi/sierlynxi.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sierlynxi/sierlynxi.lnx -------------------------------------------------------------------------------- /248b/sierlynxi/sierlynxi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sierlynxi/sierlynxi.o -------------------------------------------------------------------------------- /248b/sierlynxi/sierlynxi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sierlynxi/sierlynxi.png -------------------------------------------------------------------------------- /248b/snake/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/snake/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/snake/nfo.txt: -------------------------------------------------------------------------------- 1 | Snake249 - A boot game 2 | Compo: Nano game 3 | Platform: Atari Lynx (Felix will do as well) 4 | Size: 249 5 | Author/Group: 42Bastian 6 | Release: L<3vebyte Party 2023 7 | Files: 8 | snake.lnx - ROM for real HW 9 | snake_felix.lnx - ROM for Felix or Handy 10 | snake.bin - raw bootsector, no header 11 | ---------------------------------------------------------------------- 12 | Source will be published on https://github.com/42Bastian/lynx_hacking 13 | -------------------------------------------------------------------------------- /248b/snake/snake.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/snake/snake.lnx -------------------------------------------------------------------------------- /248b/snake/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/snake/snake.png -------------------------------------------------------------------------------- /248b/snake/snake_felix.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/snake/snake_felix.lnx -------------------------------------------------------------------------------- /248b/sv2k21/README.md: -------------------------------------------------------------------------------- 1 | # SillyVenture 2k21 (Winter Edition) Entries 2 | 3 | ## warp4.2 4 | 5 | 3D Starfield with _WARP_ 6 | 7 | ## fuji_rot 8 | 9 | Rotating Fuji in dots, source also contains rotating "LYNX" text. 10 | -------------------------------------------------------------------------------- /248b/sv2k21/fuji_rot/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sv2k21/fuji_rot/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/sv2k21/fuji_rot/fuji_rot.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sv2k21/fuji_rot/fuji_rot.lnx -------------------------------------------------------------------------------- /248b/sv2k21/fuji_rot/fuji_rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sv2k21/fuji_rot/fuji_rot.png -------------------------------------------------------------------------------- /248b/sv2k21/fuji_rot/readme.txt: -------------------------------------------------------------------------------- 1 | FUJI_ROT 2 | - Rotating Fuji of 30 dots 3 | - Size 248 bytes 4 | - Author 42Bastian 5 | - Release: Sillyventure 2021 Winter Edition 6 | - Files: .lnx for FlashCard or Emulator, .o for BLL 7 | - Source will be released on github: 8 | https://github.com/42Bastian/lynx_hacking/tree/master/248b 9 | -------------------------------------------------------------------------------- /248b/sv2k21/warp4.2/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sv2k21/warp4.2/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/sv2k21/warp4.2/readme.txt: -------------------------------------------------------------------------------- 1 | WARP 4.2 2 | - 3D star flight with warp speed. 3 | - Size 240 bytes 4 | - Author 42Bastian 5 | - Release: Sillyventure 2021 Winter Edition 6 | - Files: .lnx for FlashCard or Emulator, .o for BLL 7 | - Source will be released on github: 8 | https://github.com/42Bastian/lynx_hacking/tree/master/248b 9 | -------------------------------------------------------------------------------- /248b/sv2k21/warp4.2/warp4.2.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sv2k21/warp4.2/warp4.2.lnx -------------------------------------------------------------------------------- /248b/sv2k21/warp4.2/warp4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/sv2k21/warp4.2/warp4.2.png -------------------------------------------------------------------------------- /248b/timewarp/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/timewarp/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/timewarp/timewarp.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/timewarp/timewarp.lnx -------------------------------------------------------------------------------- /248b/timewarp/timewarp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/timewarp/timewarp.o -------------------------------------------------------------------------------- /248b/timewarp/timewarp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/timewarp/timewarp.png -------------------------------------------------------------------------------- /248b/tuef/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=tuef 2 | 3 | $(DEMO).o: $(DEMO).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | %.bin: %.asm 9 | lyxass -d -D LNX=1 -o $@ $< 10 | 11 | .PHONY: lnx 12 | lnx: $(DEMO).bin 13 | lynxenc $< $(DEMO).lyx 14 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 15 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 16 | @echo 17 | 18 | .PHONY: clean 19 | clean: 20 | rm -f *.lyx *~ *.o 21 | 22 | include ../Rules.launch 23 | -------------------------------------------------------------------------------- /248b/tuef/README.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Lynx 256 byte Demo: 3 | * tuef - TUnnelEFect 4 | # 5 | 6 | # Author: 42Bastian 7 | # Release: SOMMARHACK 2020 8 | # Source (after compo is over): https://github.com/42Bastian/lynx_hacking 9 | # Free space: 2+7 byte(s) (Lynx bootsector is limited to 249bytes) 10 | # Tested on Lynx II with Flash and SRAM card. 11 | 12 | tuef.bin: Raw binary, no headers 13 | 14 | tuef.o: BLL/Handy file with header and setup (see tuef.asm) which is 15 | normally done by the boot ROM. 16 | 17 | tuef.lnx: Flashable image (or for Handy). 18 | 19 | tuef.pde: Processing source 20 | -------------------------------------------------------------------------------- /248b/tuef/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/tuef/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/tuef/tuef.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/tuef/tuef.7z -------------------------------------------------------------------------------- /248b/tuef/tuef.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/tuef/tuef.bin -------------------------------------------------------------------------------- /248b/tuef/tuef.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/tuef/tuef.lnx -------------------------------------------------------------------------------- /248b/twister249/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=twister 2 | 3 | all: $(DEMO).o 4 | 5 | include ../Rules.launch 6 | 7 | $(DEMO).o: $(DEMO).asm 8 | 9 | %.o: %.asm 10 | lyxass $< 11 | 12 | %.bin: %.asm 13 | lyxass -d -D LNX=1 -o $@ $< 14 | 15 | lnx: $(DEMO).lnx 16 | 17 | %.lnx: %.asm 18 | lyxass -d -D LNX=1 -o $(DEMO).bin $< 19 | lynxenc $(DEMO).bin $(DEMO).lyx 20 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 21 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 22 | @echo 23 | 24 | .PHONY: clean 25 | clean: 26 | rm -f *.lyx *~ *.o 27 | -------------------------------------------------------------------------------- /248b/twister249/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/twister249/allff.lyx.bz2 -------------------------------------------------------------------------------- /248b/twister249/twister.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/248b/twister249/twister.lnx -------------------------------------------------------------------------------- /chained_scbs/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=chained_scbs 2 | 3 | chained_scbs.o: chained_scbs.asm 4 | lyxass -shex $< 5 | 6 | include ../Rules.launch 7 | -------------------------------------------------------------------------------- /chained_scbs/chained_scbs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/chained_scbs/chained_scbs.o -------------------------------------------------------------------------------- /chained_scbs2/.gitignore: -------------------------------------------------------------------------------- 1 | sprites/*.inc 2 | *.spr 3 | *.pal 4 | -------------------------------------------------------------------------------- /chained_scbs2/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=chained_scbs 2 | 3 | chained_scbs.o: chained_scbs.asm sprites/sprites.inc 4 | lyxass -shex $< 5 | 6 | sprites/sprites.inc: 7 | $(MAKE) -C sprites sprites 8 | 9 | include ../Rules.launch 10 | -------------------------------------------------------------------------------- /chained_scbs2/chained_scbs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/chained_scbs2/chained_scbs.o -------------------------------------------------------------------------------- /chained_scbs2/sprites/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: sprites 2 | .ONESHELL: 3 | sprites: 4 | @sprpck -S016010 -r010010 phobyx.pcx 5 | rm -f sprites.inc 6 | echo "sprite_addr_lo:" > spriteaddrlo.inc 7 | echo "sprite_addr_hi:" > spriteaddrhi.inc 8 | for y in {0..9}; do 9 | for x in {0..9}; do 10 | echo "spr$$x$$y: ibytes \"sprites/phobyx00$${y}00$${x}.spr\"" >> sprites.inc 11 | echo " .dc.b > spriteaddrlo.inc 12 | echo " .dc.b >spr$$x$$y" >> spriteaddrhi.inc 13 | done 14 | done 15 | -------------------------------------------------------------------------------- /chained_scbs2/sprites/phobyx.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/chained_scbs2/sprites/phobyx.pcx -------------------------------------------------------------------------------- /cycle_check/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=cycle_check 2 | 3 | cycle_check.o: cycle_check.asm 4 | lyxass -shex $< 5 | 6 | include ../Rules.launch 7 | -------------------------------------------------------------------------------- /cycle_check/cycle_check.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/cycle_check/cycle_check.o -------------------------------------------------------------------------------- /cycle_check_hbl/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=cycle_check 2 | 3 | cycle_check.o: cycle_check.asm my_irq.inc 4 | lyxass -shex $< 5 | 6 | include ../Rules.launch 7 | -------------------------------------------------------------------------------- /cycle_check_hbl/cycle_check.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/cycle_check_hbl/cycle_check.o -------------------------------------------------------------------------------- /flasher/Makefile: -------------------------------------------------------------------------------- 1 | ifeq ($(OS),Windows_NT) 2 | CC = x86_64-w64-mingw32-gcc 3 | DST=bin/mingw 4 | EXT=.exe 5 | else 6 | CC = gcc 7 | DST=. 8 | EXT=# 9 | endif 10 | 11 | CFLAGS=-Os -fomit-frame-pointer 12 | 13 | .SUFFIXES: .asc .obj .S .asm 14 | 15 | %.o: %.asm 16 | lyxass $< 17 | 18 | .obj.asc: 19 | bin2asc < $*.obj >$@ 20 | 21 | .c.o: 22 | $(CC) $(CFLAGS) -c $< 23 | .S.o: 24 | $(CC) -c $< -o $@ 25 | 26 | all: $(DST)/flash_up$(EXT) 27 | 28 | flash_code.o: flash_code.S flashcard.o 29 | 30 | $(DST)/flash_up$(EXT): flash_up.o flash_code.o 31 | $(CC) flash_up.o flash_code.o -o $@ 32 | upx -9 $@ 33 | 34 | clean: 35 | rm -f *.o 36 | rm -f *~ 37 | -------------------------------------------------------------------------------- /flasher/README.md: -------------------------------------------------------------------------------- 1 | # Flasher 2 | 3 | Flasher for Karri's new flash cards. Runs completely on the Lynx and therefore 4 | needs a lot of time! 5 | 6 | Originally written for the SRAM card developed by Lars Baumstark. 7 | -------------------------------------------------------------------------------- /flasher/bin/mingw/flash_up.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/flasher/bin/mingw/flash_up.exe -------------------------------------------------------------------------------- /flasher/flash_code.S: -------------------------------------------------------------------------------- 1 | .text 2 | .globl sram_lynx 3 | .align 4 4 | sram_lynx: 5 | .incbin "flashcard.o" 6 | -------------------------------------------------------------------------------- /flasher/flash_up.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/flasher/flash_up.exe -------------------------------------------------------------------------------- /lniccc2000/abcmusic.var: -------------------------------------------------------------------------------- 1 | ; vars for ABC-music 2 | 3 | BEGIN_ZP 4 | abc_tmp dw 0 5 | abc_by8 db 0 6 | abc_repeat_offs 7 | db 0,0,0,0 8 | abc_score_ptr dw 0 9 | END_ZP 10 | -------------------------------------------------------------------------------- /lniccc2000/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/allff.lyx.bz2 -------------------------------------------------------------------------------- /lniccc2000/lniccc2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/lniccc2000.jpg -------------------------------------------------------------------------------- /lniccc2000/lniccc2000.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/lniccc2000.lnx -------------------------------------------------------------------------------- /lniccc2000/lniccc2000_tsc.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/lniccc2000_tsc.lnx -------------------------------------------------------------------------------- /lniccc2000/ml512.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/ml512.enc -------------------------------------------------------------------------------- /lniccc2000/poly8.var: -------------------------------------------------------------------------------- 1 | ;-*-asm-*- 2 | ; ZP variables for poly8.inc 3 | BEGIN_ZP 4 | px1 ds 1 5 | px2 ds 1 6 | px3 ds 1 7 | py1 ds 1 8 | py2 ds 1 9 | py3 ds 1 10 | tiltAB ds 2 11 | tiltAC ds 2 12 | tiltBC ds 2 13 | END_ZP -------------------------------------------------------------------------------- /lniccc2000/scene.bin.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/scene.bin.lz4 -------------------------------------------------------------------------------- /lniccc2000/scene.bin.tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/scene.bin.tsc -------------------------------------------------------------------------------- /lniccc2000/scene/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/* 2 | scene2lynx 3 | scene.bin.lz4 4 | scene.bin.tsc 5 | x.asm 6 | -------------------------------------------------------------------------------- /lniccc2000/scene/readme.md: -------------------------------------------------------------------------------- 1 | # Scene generation 2 | 3 | scene2lynx.c is a ANSCI C program which should compile on most GCC on most platforms. It is used to convert the ST oriented scene data for the Lynx. 4 | Also it sets split marks for a later frame cutting for background loading and depacking. 5 | -------------------------------------------------------------------------------- /lniccc2000/scene/scene1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/scene/scene1.dat -------------------------------------------------------------------------------- /lniccc2000/scene/scene_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/scene/scene_description.txt -------------------------------------------------------------------------------- /lniccc2000/scene/tmp/dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/scene/tmp/dummy -------------------------------------------------------------------------------- /lniccc2000/title1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/title1.pcx -------------------------------------------------------------------------------- /lniccc2000/title1.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/lniccc2000/title1.spr -------------------------------------------------------------------------------- /lniccc2000/unlz4.var: -------------------------------------------------------------------------------- 1 | ; -*-asm-*- 2 | ;;; Variable definitions for LZ4 unpacker 3 | 4 | BEGIN_ZP 5 | lz4_src_e DS 2 6 | lz4_tmp DS 1 7 | lz4_ptr DS 2 8 | END_ZP 9 | -------------------------------------------------------------------------------- /lniccc2000/untsc.var: -------------------------------------------------------------------------------- 1 | ; -*-asm-*- 2 | ;;; Variable definitions for TScrunch unpacker 3 | 4 | BEGIN_ZP 5 | tstemp DS 1 6 | tsput DS 2 7 | lzput DS 2 8 | END_ZP 9 | -------------------------------------------------------------------------------- /microloader/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | -------------------------------------------------------------------------------- /microloader/Makefile: -------------------------------------------------------------------------------- 1 | all: ml.lnx 2 | 3 | ml.lyx: ml_enc.bin demo.bin 4 | cat ml_enc.bin demo.bin >$@ 5 | 6 | ml.lnx: ml.lyx 7 | make_lnx $< -b0 256K -o $@ 8 | 9 | ml_enc.bin: ml.bin 10 | lynxenc $< $@ 11 | 12 | ml.bin: micro_loader.s 13 | lyxass -d -o $@ $< 14 | 15 | demo.bin: demo.s 16 | lyxass -d -o $@ $< 17 | 18 | .PHONY: clean 19 | clean: 20 | rm -f *.bin 21 | rm -f ml.lnx ml.lyx 22 | -------------------------------------------------------------------------------- /microloader/ml.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/microloader/ml.lnx -------------------------------------------------------------------------------- /microloader/ml.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/microloader/ml.lyx -------------------------------------------------------------------------------- /monalynx/.gitignore: -------------------------------------------------------------------------------- 1 | *.enc 2 | *.lyx 3 | *.lnx 4 | *.bin 5 | -------------------------------------------------------------------------------- /monalynx/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=monalynx 2 | 3 | $(DEMO).o: $(DEMO).asm 4 | 5 | %.o: %.asm 6 | lyxass -v $< 7 | 8 | bin: monaload.bin monalynx.bin 9 | 10 | %.bin: %.asm 11 | lyxass -d -D LNX=1 -o $@ $< 12 | 13 | lnx: $(DEMO).lnx 14 | 15 | %.lnx: %.asm monaload.bin monalynx.bin 16 | lynxenc monaload.bin monaload.enc 17 | cat monaload.enc $(DEMO).bin > $(DEMO).lyx 18 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 19 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 20 | @echo 21 | 22 | .PHONY: clean 23 | clean: 24 | rm -f *.lyx *~ *.bin *.enc monaload.o 25 | 26 | include ../Rules.launch 27 | -------------------------------------------------------------------------------- /monalynx/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/monalynx/allff.lyx.bz2 -------------------------------------------------------------------------------- /monalynx/monalynx.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/monalynx/monalynx.lnx -------------------------------------------------------------------------------- /monalynx/monalynx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/monalynx/monalynx.o -------------------------------------------------------------------------------- /monalynx/monalynx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/monalynx/monalynx.png -------------------------------------------------------------------------------- /monalynx/readme.txt: -------------------------------------------------------------------------------- 1 | This is a tribute to Ilmenit, who made the original for XL 2 | It is for the sake of completness and because I wanted it to have also on the Lynx. 3 | Goal was to fit into 249 of the Bootsector, but it is 65 bytes away. 4 | -------------------------------------------------------------------------------- /monalynx_no_o/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=monalynx 2 | 3 | all: lnx 4 | 5 | $(DEMO).o: $(DEMO).asm 6 | 7 | %.o: %.asm monalynx.var 8 | lyxass -v $< 9 | 10 | bin: monaload.bin monalynx.bin 11 | 12 | monaload.bin: monalynx.equ 13 | 14 | %.equ %.bin: %.asm 15 | lyxass -d -sh -D LNX=1 -o $*.bin $*.asm 16 | 17 | lnx: $(DEMO).lnx 18 | 19 | %.lnx: %.asm monaload.bin monalynx.bin 20 | lynxenc monaload.bin monaload.enc 21 | cat monaload.enc $(DEMO).bin > $(DEMO).lyx 22 | bzcat allff.lyx.bz2 >> $(DEMO).lyx 23 | make_lnx $(DEMO).lyx -b0 256K -o $(DEMO).lnx 24 | @echo 25 | 26 | .PHONY: clean 27 | clean: 28 | rm -f *.lyx *~ *.bin *.enc monaload.o 29 | 30 | include ../Rules.launch 31 | -------------------------------------------------------------------------------- /monalynx_no_o/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/monalynx_no_o/allff.lyx.bz2 -------------------------------------------------------------------------------- /monalynx_no_o/monalynx.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/monalynx_no_o/monalynx.lnx -------------------------------------------------------------------------------- /monalynx_no_o/monalynx.var: -------------------------------------------------------------------------------- 1 | BEGIN_ZP 2 | path_length ds 1 3 | dir ds 1 4 | plot_y ds 1 5 | dummy ds 3 6 | plot_x ds 1 7 | plot_color ds 1 8 | tmp ds 1 9 | dummy2 ds 1 10 | ptr ds 2 11 | seed ds 4 12 | 13 | END_ZP 14 | -------------------------------------------------------------------------------- /nostalgia/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | -------------------------------------------------------------------------------- /nostalgia/SCENE_v1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/nostalgia/SCENE_v1.dat -------------------------------------------------------------------------------- /nostalgia/allff.lyx.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/nostalgia/allff.lyx.bz2 -------------------------------------------------------------------------------- /nostalgia/ml512.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/nostalgia/ml512.enc -------------------------------------------------------------------------------- /nostalgia/nostalgia.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/nostalgia/nostalgia.lnx -------------------------------------------------------------------------------- /nostalgia/nostalgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/nostalgia/nostalgia.png -------------------------------------------------------------------------------- /nostalgia/poly8.var: -------------------------------------------------------------------------------- 1 | ;-*-asm-*- 2 | ; ZP variables for poly8.inc 3 | BEGIN_ZP 4 | px1 ds 1 5 | px2 ds 1 6 | px3 ds 1 7 | py1 ds 1 8 | py2 ds 1 9 | py3 ds 1 10 | tiltAB ds 2 11 | tiltAC ds 2 12 | tiltBC ds 2 13 | END_ZP -------------------------------------------------------------------------------- /nostalgia/readme.md: -------------------------------------------------------------------------------- 1 | # Nostalgia 2 | 3 | Replay routine for the orginal (un-altered) "Vanessa on nostalgia trip" demo data. 4 | 5 | Drawn directly from card. 6 | 7 | ~~Only single direction~~ 8 | -------------------------------------------------------------------------------- /raycast/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.equ 3 | *.pal 4 | -------------------------------------------------------------------------------- /raycast/door.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/door.pcx -------------------------------------------------------------------------------- /raycast/frame.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/frame.pcx -------------------------------------------------------------------------------- /raycast/monster.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/monster.pcx -------------------------------------------------------------------------------- /raycast/monster_back.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/monster_back.pcx -------------------------------------------------------------------------------- /raycast/phobyx.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/phobyx.pcx -------------------------------------------------------------------------------- /raycast/raycast.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/raycast.lnx -------------------------------------------------------------------------------- /raycast/scr_frame_left.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/scr_frame_left.pcx -------------------------------------------------------------------------------- /raycast/scr_frame_left.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/scr_frame_left.spr -------------------------------------------------------------------------------- /raycast/smiley.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/smiley.pcx -------------------------------------------------------------------------------- /raycast/smiley_back.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/smiley_back.pcx -------------------------------------------------------------------------------- /raycast/smiley_left.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/smiley_left.pcx -------------------------------------------------------------------------------- /raycast/smiley_right.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/smiley_right.pcx -------------------------------------------------------------------------------- /raycast/spr/door000000.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000000.spr -------------------------------------------------------------------------------- /raycast/spr/door000001.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000001.spr -------------------------------------------------------------------------------- /raycast/spr/door000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000002.spr -------------------------------------------------------------------------------- /raycast/spr/door000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000003.spr -------------------------------------------------------------------------------- /raycast/spr/door000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000004.spr -------------------------------------------------------------------------------- /raycast/spr/door000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000005.spr -------------------------------------------------------------------------------- /raycast/spr/door000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000006.spr -------------------------------------------------------------------------------- /raycast/spr/door000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000007.spr -------------------------------------------------------------------------------- /raycast/spr/door000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000008.spr -------------------------------------------------------------------------------- /raycast/spr/door000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000009.spr -------------------------------------------------------------------------------- /raycast/spr/door000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000010.spr -------------------------------------------------------------------------------- /raycast/spr/door000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000011.spr -------------------------------------------------------------------------------- /raycast/spr/door000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000012.spr -------------------------------------------------------------------------------- /raycast/spr/door000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000013.spr -------------------------------------------------------------------------------- /raycast/spr/door000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000014.spr -------------------------------------------------------------------------------- /raycast/spr/door000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000015.spr -------------------------------------------------------------------------------- /raycast/spr/door000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000016.spr -------------------------------------------------------------------------------- /raycast/spr/door000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000017.spr -------------------------------------------------------------------------------- /raycast/spr/door000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000018.spr -------------------------------------------------------------------------------- /raycast/spr/door000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000019.spr -------------------------------------------------------------------------------- /raycast/spr/door000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000020.spr -------------------------------------------------------------------------------- /raycast/spr/door000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000021.spr -------------------------------------------------------------------------------- /raycast/spr/door000022.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000022.spr -------------------------------------------------------------------------------- /raycast/spr/door000023.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000023.spr -------------------------------------------------------------------------------- /raycast/spr/door000024.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000024.spr -------------------------------------------------------------------------------- /raycast/spr/door000025.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000025.spr -------------------------------------------------------------------------------- /raycast/spr/door000026.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000026.spr -------------------------------------------------------------------------------- /raycast/spr/door000027.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000027.spr -------------------------------------------------------------------------------- /raycast/spr/door000028.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000028.spr -------------------------------------------------------------------------------- /raycast/spr/door000029.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000029.spr -------------------------------------------------------------------------------- /raycast/spr/door000030.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000030.spr -------------------------------------------------------------------------------- /raycast/spr/door000031.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/door000031.spr -------------------------------------------------------------------------------- /raycast/spr/frame000000.spr: -------------------------------------------------------------------------------- 1 | 0PPPPPP000P0PPP0000000P0000PPPP0 -------------------------------------------------------------------------------- /raycast/spr/frame000001.spr: -------------------------------------------------------------------------------- 1 | P0000000P000000000PP0P0000000000 -------------------------------------------------------------------------------- /raycast/spr/frame000002.spr: -------------------------------------------------------------------------------- 1 | 0PP000000000PPPP0P000PP0000PP00P -------------------------------------------------------------------------------- /raycast/spr/frame000003.spr: -------------------------------------------------------------------------------- 1 | 000000000P0P0PPP0000000000PP0P00 -------------------------------------------------------------------------------- /raycast/spr/frame000004.spr: -------------------------------------------------------------------------------- 1 | PPPP0P0PP000000PP00PPPP00PPP0000 -------------------------------------------------------------------------------- /raycast/spr/frame000005.spr: -------------------------------------------------------------------------------- 1 | 000PP000PPP0PP000P0PPPPPPPPPP0P0 -------------------------------------------------------------------------------- /raycast/spr/frame000006.spr: -------------------------------------------------------------------------------- 1 | PP00PP000PPPPP0PP00P000000000PP0 -------------------------------------------------------------------------------- /raycast/spr/frame000007.spr: -------------------------------------------------------------------------------- 1 | 00000PPPP0000P0P00PP00P00PP0PP0P -------------------------------------------------------------------------------- /raycast/spr/frame000008.spr: -------------------------------------------------------------------------------- 1 | 00000000PP0P0000P00000PPPP0PP000 -------------------------------------------------------------------------------- /raycast/spr/frame000009.spr: -------------------------------------------------------------------------------- 1 | PPP0000000P0P000PP0P0PP0000P00PP -------------------------------------------------------------------------------- /raycast/spr/frame000010.spr: -------------------------------------------------------------------------------- 1 | P0P000000000PP00PP0PPPP0000P0PPP -------------------------------------------------------------------------------- /raycast/spr/frame000011.spr: -------------------------------------------------------------------------------- 1 | PPPP0000P0000PPP000000000PPPP00P -------------------------------------------------------------------------------- /raycast/spr/frame000012.spr: -------------------------------------------------------------------------------- 1 | 00000000000000000000000P0P000000 -------------------------------------------------------------------------------- /raycast/spr/frame000013.spr: -------------------------------------------------------------------------------- 1 | P00P0000PPP0000000P00P0PPP00PPP0 -------------------------------------------------------------------------------- /raycast/spr/frame000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/frame000014.spr -------------------------------------------------------------------------------- /raycast/spr/frame000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/frame000015.spr -------------------------------------------------------------------------------- /raycast/spr/frame000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/frame000016.spr -------------------------------------------------------------------------------- /raycast/spr/frame000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/frame000017.spr -------------------------------------------------------------------------------- /raycast/spr/frame000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/frame000018.spr -------------------------------------------------------------------------------- /raycast/spr/frame000019.spr: -------------------------------------------------------------------------------- 1 | 0000PPPPPPP000000P000PPPPPP0P0P0 -------------------------------------------------------------------------------- /raycast/spr/frame000020.spr: -------------------------------------------------------------------------------- 1 | P000PP0PP0P00000PP00000000000000 -------------------------------------------------------------------------------- /raycast/spr/frame000021.spr: -------------------------------------------------------------------------------- 1 | P0P00000PPPP00P0PPP0PP0PP00P0PPP -------------------------------------------------------------------------------- /raycast/spr/frame000022.spr: -------------------------------------------------------------------------------- 1 | 0PPP0PP0000000P0000000P000PPPPP0 -------------------------------------------------------------------------------- /raycast/spr/frame000023.spr: -------------------------------------------------------------------------------- 1 | PP000000P00P00000P0PPPP00PP00000 -------------------------------------------------------------------------------- /raycast/spr/frame000024.spr: -------------------------------------------------------------------------------- 1 | 000000PP0PPPPP000PPP000PPP000P0P -------------------------------------------------------------------------------- /raycast/spr/frame000025.spr: -------------------------------------------------------------------------------- 1 | 0P00PPPPP0PPPP00P0000P000000000P -------------------------------------------------------------------------------- /raycast/spr/frame000026.spr: -------------------------------------------------------------------------------- 1 | 0PP000000P000P0PPP0P0000000PPP00 -------------------------------------------------------------------------------- /raycast/spr/frame000027.spr: -------------------------------------------------------------------------------- 1 | 00PPPP0PPPP00000P0000P0P00000PP0 -------------------------------------------------------------------------------- /raycast/spr/frame000028.spr: -------------------------------------------------------------------------------- 1 | 0P000PPP0P00PPP0P0PP000PPP000000 -------------------------------------------------------------------------------- /raycast/spr/frame000029.spr: -------------------------------------------------------------------------------- 1 | 0PPP00PP000P0PPPP00P000P00PPP000 -------------------------------------------------------------------------------- /raycast/spr/frame000030.spr: -------------------------------------------------------------------------------- 1 | 0000000PPPPP0000000P000000P00000 -------------------------------------------------------------------------------- /raycast/spr/frame000031.spr: -------------------------------------------------------------------------------- 1 | PPPP00000000P0P000000000PPPP0000 -------------------------------------------------------------------------------- /raycast/spr/mandel000000.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000000.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000001.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000001.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000002.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000003.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000004.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000005.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000006.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000007.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000008.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000009.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000010.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000011.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000012.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000013.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000014.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000015.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000016.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000017.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000018.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000019.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000020.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000021.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000022.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000022.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000023.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000023.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000024.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000024.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000025.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000025.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000026.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000026.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000027.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000027.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000028.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000028.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000029.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000029.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000030.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000030.spr -------------------------------------------------------------------------------- /raycast/spr/mandel000031.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/mandel000031.spr -------------------------------------------------------------------------------- /raycast/spr/monster000000.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/monster000001.spr: -------------------------------------------------------------------------------- 1 | PP -------------------------------------------------------------------------------- /raycast/spr/monster000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000002.spr -------------------------------------------------------------------------------- /raycast/spr/monster000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000003.spr -------------------------------------------------------------------------------- /raycast/spr/monster000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000004.spr -------------------------------------------------------------------------------- /raycast/spr/monster000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000005.spr -------------------------------------------------------------------------------- /raycast/spr/monster000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000006.spr -------------------------------------------------------------------------------- /raycast/spr/monster000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000007.spr -------------------------------------------------------------------------------- /raycast/spr/monster000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000008.spr -------------------------------------------------------------------------------- /raycast/spr/monster000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000009.spr -------------------------------------------------------------------------------- /raycast/spr/monster000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000010.spr -------------------------------------------------------------------------------- /raycast/spr/monster000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000011.spr -------------------------------------------------------------------------------- /raycast/spr/monster000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000012.spr -------------------------------------------------------------------------------- /raycast/spr/monster000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000013.spr -------------------------------------------------------------------------------- /raycast/spr/monster000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000014.spr -------------------------------------------------------------------------------- /raycast/spr/monster000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000015.spr -------------------------------------------------------------------------------- /raycast/spr/monster000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000016.spr -------------------------------------------------------------------------------- /raycast/spr/monster000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000017.spr -------------------------------------------------------------------------------- /raycast/spr/monster000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000018.spr -------------------------------------------------------------------------------- /raycast/spr/monster000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000019.spr -------------------------------------------------------------------------------- /raycast/spr/monster000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000020.spr -------------------------------------------------------------------------------- /raycast/spr/monster000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster000021.spr -------------------------------------------------------------------------------- /raycast/spr/monster000022.spr: -------------------------------------------------------------------------------- 1 | PP -------------------------------------------------------------------------------- /raycast/spr/monster000023.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/monster_back000000.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/monster_back000001.spr: -------------------------------------------------------------------------------- 1 | PP -------------------------------------------------------------------------------- /raycast/spr/monster_back000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000002.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000003.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000004.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000005.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000006.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000007.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000008.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000009.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000010.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000011.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000012.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000013.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000014.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000015.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000016.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000017.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000018.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000019.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000020.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/monster_back000021.spr -------------------------------------------------------------------------------- /raycast/spr/monster_back000022.spr: -------------------------------------------------------------------------------- 1 | PP -------------------------------------------------------------------------------- /raycast/spr/monster_back000023.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/phobyx000000.spr: -------------------------------------------------------------------------------- 1 | 0PPPPPP000P0PPP0000000P0000PPPP0 -------------------------------------------------------------------------------- /raycast/spr/phobyx000001.spr: -------------------------------------------------------------------------------- 1 | P0000000P000000000PP0P0000000000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000002.spr: -------------------------------------------------------------------------------- 1 | 0PP000000000PPPP0P000PP0000PP00P -------------------------------------------------------------------------------- /raycast/spr/phobyx000003.spr: -------------------------------------------------------------------------------- 1 | 000000000P0P0PPP0000000000PP0P00 -------------------------------------------------------------------------------- /raycast/spr/phobyx000004.spr: -------------------------------------------------------------------------------- 1 | PPPP0P0PP000000PP00PPPP00PPP0000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000005.spr: -------------------------------------------------------------------------------- 1 | 000PP000PPP0PP000P0PPPPPPPPPP0P0 -------------------------------------------------------------------------------- /raycast/spr/phobyx000006.spr: -------------------------------------------------------------------------------- 1 | PP00PP000PPPPP0PP00P000000000PP0 -------------------------------------------------------------------------------- /raycast/spr/phobyx000007.spr: -------------------------------------------------------------------------------- 1 | 00000PPPP0000P0P00PP00P00PP0PP0P -------------------------------------------------------------------------------- /raycast/spr/phobyx000008.spr: -------------------------------------------------------------------------------- 1 | 00000000PP0P0000P00000PPPP0PP000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000009.spr: -------------------------------------------------------------------------------- 1 | PPP0000000P0P000PP0P0PP0000P00PP -------------------------------------------------------------------------------- /raycast/spr/phobyx000010.spr: -------------------------------------------------------------------------------- 1 | P0P000000000PP00PP0PPPP0000P0PPP -------------------------------------------------------------------------------- /raycast/spr/phobyx000011.spr: -------------------------------------------------------------------------------- 1 | PPPP0000P0000PPP000000000PPPP00P -------------------------------------------------------------------------------- /raycast/spr/phobyx000012.spr: -------------------------------------------------------------------------------- 1 | 00000000000000000000000P0P000000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000013.spr: -------------------------------------------------------------------------------- 1 | P00P0000PPP0000000P00P0PPP00PPP0 -------------------------------------------------------------------------------- /raycast/spr/phobyx000014.spr: -------------------------------------------------------------------------------- 1 | 0PPPPP0PP0P00000PPPPP000000P0P00 -------------------------------------------------------------------------------- /raycast/spr/phobyx000015.spr: -------------------------------------------------------------------------------- 1 | P0PPPP00PPPPP000PPP0000P00000000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000016.spr: -------------------------------------------------------------------------------- 1 | 0P000P000000PP00000000000PP00000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000017.spr: -------------------------------------------------------------------------------- 1 | PPP00000P0000PPPP0P00PP0000000PP -------------------------------------------------------------------------------- /raycast/spr/phobyx000018.spr: -------------------------------------------------------------------------------- 1 | 0P000PPP00000000PPPPP0P0PPPP00PP -------------------------------------------------------------------------------- /raycast/spr/phobyx000019.spr: -------------------------------------------------------------------------------- 1 | 0000PPPPPPP000000P000PPPPPP0P0P0 -------------------------------------------------------------------------------- /raycast/spr/phobyx000020.spr: -------------------------------------------------------------------------------- 1 | P000PP0PP0P00000PP00000000000000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000021.spr: -------------------------------------------------------------------------------- 1 | P0P00000PPPP00P0PPP0PP0PP00P0PPP -------------------------------------------------------------------------------- /raycast/spr/phobyx000022.spr: -------------------------------------------------------------------------------- 1 | 0PPP0PP0000000P0000000P000PPPPP0 -------------------------------------------------------------------------------- /raycast/spr/phobyx000023.spr: -------------------------------------------------------------------------------- 1 | PP000000P00P00000P0PPPP00PP00000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000024.spr: -------------------------------------------------------------------------------- 1 | 000000PP0PPPPP000PPP000PPP000P0P -------------------------------------------------------------------------------- /raycast/spr/phobyx000025.spr: -------------------------------------------------------------------------------- 1 | 0P00PPPPP0PPPP00P0000P000000000P -------------------------------------------------------------------------------- /raycast/spr/phobyx000026.spr: -------------------------------------------------------------------------------- 1 | 0PP000000P000P0PPP0P0000000PPP00 -------------------------------------------------------------------------------- /raycast/spr/phobyx000027.spr: -------------------------------------------------------------------------------- 1 | 00PPPP0PPPP00000P0000P0P00000PP0 -------------------------------------------------------------------------------- /raycast/spr/phobyx000028.spr: -------------------------------------------------------------------------------- 1 | 0P000PPP0P00PPP0P0PP000PPP000000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000029.spr: -------------------------------------------------------------------------------- 1 | 0PPP00PP000P0PPPP00P000P00PPP000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000030.spr: -------------------------------------------------------------------------------- 1 | 0000000PPPPP0000000P000000P00000 -------------------------------------------------------------------------------- /raycast/spr/phobyx000031.spr: -------------------------------------------------------------------------------- 1 | PPPP00000000P0P000000000PPPP0000 -------------------------------------------------------------------------------- /raycast/spr/smiley000000.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000000.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000001.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000001.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000002.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000003.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000004.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000005.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000006.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000007.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000008.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000009.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000010.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000011.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000012.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000013.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000014.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000015.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000016.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000017.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000018.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000019.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000020.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000021.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000022.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000022.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000023.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000023.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000024.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000024.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000025.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000025.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000026.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000026.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000027.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley000027.spr -------------------------------------------------------------------------------- /raycast/spr/smiley000028.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley000029.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley000030.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley000031.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_back000000.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000000.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000001.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000001.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000002.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000003.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000004.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000005.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000006.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000007.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000008.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000009.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000010.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000011.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000012.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000013.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000014.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000015.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000016.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000017.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000018.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000019.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000020.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000021.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000022.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000022.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000023.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000023.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000024.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000024.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000025.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000025.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000026.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000026.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000027.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_back000027.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_back000028.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_back000029.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_back000030.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_back000031.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_left000000.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000000.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000001.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000001.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000002.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000003.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000004.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000005.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000006.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000007.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000008.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000009.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000010.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000011.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000012.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000013.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000014.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000015.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000016.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000017.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000018.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000019.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000020.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000021.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000022.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000022.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000023.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000023.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000024.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000024.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000025.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000025.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000026.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000026.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000027.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_left000027.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_left000028.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_left000029.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_left000030.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_left000031.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_right000000.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000000.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000001.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000001.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000002.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000002.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000003.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000003.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000004.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000004.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000005.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000005.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000006.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000006.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000007.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000007.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000008.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000008.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000009.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000009.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000010.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000010.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000011.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000011.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000012.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000012.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000013.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000013.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000014.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000014.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000015.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000015.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000016.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000016.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000017.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000017.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000018.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000018.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000019.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000019.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000020.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000020.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000021.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000021.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000022.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000022.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000023.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000023.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000024.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000024.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000025.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000025.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000026.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000026.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000027.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/spr/smiley_right000027.spr -------------------------------------------------------------------------------- /raycast/spr/smiley_right000028.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_right000029.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_right000030.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/smiley_right000031.spr: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /raycast/spr/wall1000000.spr: -------------------------------------------------------------------------------- 1 | @P@@@P0@@@000  00@0@@0PP@@P@ -------------------------------------------------------------------------------- /raycast/spr/wall1000001.spr: -------------------------------------------------------------------------------- 1 | P@@@@0 P@00000@00@P 0@@0@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000002.spr: -------------------------------------------------------------------------------- 1 |  @@@000 P000@0  00000@ 000@@P -------------------------------------------------------------------------------- /raycast/spr/wall1000003.spr: -------------------------------------------------------------------------------- 1 |  @@@@00  @00000  00@@0P@@@@@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000004.spr: -------------------------------------------------------------------------------- 1 | P@@000 P@@000 00@00P @00@@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000005.spr: -------------------------------------------------------------------------------- 1 |  @0@@00 P00000 00000P@0@@0@ -------------------------------------------------------------------------------- /raycast/spr/wall1000006.spr: -------------------------------------------------------------------------------- 1 | P@@0@@ 0       0000@0P -------------------------------------------------------------------------------- /raycast/spr/wall1000007.spr: -------------------------------------------------------------------------------- 1 | P0@000     @@0@0P -------------------------------------------------------------------------------- /raycast/spr/wall1000008.spr: -------------------------------------------------------------------------------- 1 | @00@00@@@@0P00PP@P@P0@@00P -------------------------------------------------------------------------------- /raycast/spr/wall1000009.spr: -------------------------------------------------------------------------------- 1 | @00@@0 P@0@@0  0@@@@@ 0000@P -------------------------------------------------------------------------------- /raycast/spr/wall1000010.spr: -------------------------------------------------------------------------------- 1 | @0@000 P@@000  00@@@@000@@P -------------------------------------------------------------------------------- /raycast/spr/wall1000011.spr: -------------------------------------------------------------------------------- 1 | P0@00@ @@0@@0 00@@@P 00@00P -------------------------------------------------------------------------------- /raycast/spr/wall1000012.spr: -------------------------------------------------------------------------------- 1 | P0@000 @0@@00 @0@00@ 00@00P -------------------------------------------------------------------------------- /raycast/spr/wall1000013.spr: -------------------------------------------------------------------------------- 1 | P00000  @00000 @0@@0@ 00@00P -------------------------------------------------------------------------------- /raycast/spr/wall1000014.spr: -------------------------------------------------------------------------------- 1 | 0     @@0@@0 @000@@      0 -------------------------------------------------------------------------------- /raycast/spr/wall1000015.spr: -------------------------------------------------------------------------------- 1 |   @0@000 0@00@P     -------------------------------------------------------------------------------- /raycast/spr/wall1000016.spr: -------------------------------------------------------------------------------- 1 | @@@@PP0@00@00  000@@P0P@@@P@ -------------------------------------------------------------------------------- /raycast/spr/wall1000017.spr: -------------------------------------------------------------------------------- 1 | P@@0@0 @@@@0@00@@0@ 0@@@@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000018.spr: -------------------------------------------------------------------------------- 1 | P@@@@0P0@@00 00@00P @0@@@P -------------------------------------------------------------------------------- /raycast/spr/wall1000019.spr: -------------------------------------------------------------------------------- 1 |  P@@@@@ @0@0@0 000@@P 00@0@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000020.spr: -------------------------------------------------------------------------------- 1 |  @@00@0P00000 00000P0@0@@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000021.spr: -------------------------------------------------------------------------------- 1 | P00@00P00000 00000P0@@0@P -------------------------------------------------------------------------------- /raycast/spr/wall1000022.spr: -------------------------------------------------------------------------------- 1 | P@@@00 0       0 00@0@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000023.spr: -------------------------------------------------------------------------------- 1 | @0000@ 000@0P -------------------------------------------------------------------------------- /raycast/spr/wall1000024.spr: -------------------------------------------------------------------------------- 1 | @0@@00@@@PPP00P@P@P@ 00000P -------------------------------------------------------------------------------- /raycast/spr/wall1000025.spr: -------------------------------------------------------------------------------- 1 | @0@@00 @@@@@0  @0@@@@0000@@ -------------------------------------------------------------------------------- /raycast/spr/wall1000026.spr: -------------------------------------------------------------------------------- 1 | P000@0 @@0@0@  0@0@@P 00000P -------------------------------------------------------------------------------- /raycast/spr/wall1000027.spr: -------------------------------------------------------------------------------- 1 | P@@0@0 @@@@@0 0@00@@ 0000@P -------------------------------------------------------------------------------- /raycast/spr/wall1000028.spr: -------------------------------------------------------------------------------- 1 | P00000  @0@0@0 0@0@@P 00000P -------------------------------------------------------------------------------- /raycast/spr/wall1000029.spr: -------------------------------------------------------------------------------- 1 | P00000  @@@0000@00@P  00000P -------------------------------------------------------------------------------- /raycast/spr/wall1000030.spr: -------------------------------------------------------------------------------- 1 | 0     P000@0 00@00P     0 -------------------------------------------------------------------------------- /raycast/spr/wall1000031.spr: -------------------------------------------------------------------------------- 1 |  P00@00  000@0P  -------------------------------------------------------------------------------- /raycast/wall1.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/raycast/wall1.pcx -------------------------------------------------------------------------------- /vgmplay/Makefile: -------------------------------------------------------------------------------- 1 | DEMO=vgmplay 2 | 3 | ASFLAGS=-sh 4 | 5 | $(DEMO).o: $(DEMO).asm vgmplay.inc 6 | 7 | %.o: %.asm 8 | @lyxass $(ASFLAGS) $< 9 | 10 | %.bin: %.asm 11 | @lyxass -d $(ASFLAGS) -D LNX=1 -o $@ $< 12 | 13 | 14 | lnx: $(DEMO).lnx 15 | $(DEMO).lnx: $(DEMO).asm vgmplay.inc x.v2l 16 | lyxass -d $(ASFLAGS) -D LNX=1 -o $@ $(DEMO).asm 17 | 18 | include Rules.launch 19 | 20 | clean: 21 | @rm -f *.lyx *.bin *~ *.equ 22 | 23 | real-clean: 24 | @rm -f *.o *.lnx 25 | -------------------------------------------------------------------------------- /vgmplay/readme.md: -------------------------------------------------------------------------------- 1 | # vgmplay 2 | 3 | Minimalistic V2L (VGM2LYNX) player. 4 | 5 | Converter 6 | 7 | https://github.com/42Bastian/VGM2LNX 8 | -------------------------------------------------------------------------------- /vgmplay/vgmplay.lnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42Bastian/lynx_hacking/2bd04864b63a6355910ea4412473f80f96b7fef6/vgmplay/vgmplay.lnx --------------------------------------------------------------------------------