├── LICENSE ├── Merryo_Trolls.2mg ├── README.md ├── boot_dependencies ├── BASIC.System └── PRODOS ├── dev_tools ├── block_pointer_editor.html ├── block_sets │ ├── world_1-block_pointers.bin │ ├── world_1-blocks.png │ ├── world_2-block_pointers.bin │ ├── world_2-blocks.png │ ├── world_3-block_pointers.bin │ ├── world_3-blocks.png │ ├── world_4-blocks.png │ ├── world_5-block_pointers.bin │ ├── world_5-blocks.png │ ├── world_6-block_pointers.bin │ └── world_6-blocks.png ├── docker-compose.yml ├── index.html ├── level_combiner.html ├── level_editor │ ├── connects_editing.js │ ├── edit_history.js │ ├── index.html │ └── level_set.js ├── level_maps │ ├── world_1-level_1_to_4.bin │ ├── world_2-level_1_to_4.bin │ ├── world_3-level_1_to_4.bin │ ├── world_4-level_1_to_4.bin │ ├── world_5-level_1_to_4.bin │ ├── world_6-level_1_to_4.bin │ └── world_7-level_1_to_4.bin ├── lib │ ├── editor_tiles.png │ ├── editor_tiles.psd │ ├── mouse_utils.js │ ├── selection.js │ └── tile_sets.js └── scr_viewer_and_blockset_unwinder.html ├── grand_tour_website ├── 1993-notes-trolls-guido_par.jpg ├── 1994-notes-trolls-techno_id.jpg ├── assembly_chart.jpg ├── block.png ├── block_as_data.png ├── block_grid-scr.gif ├── block_grid.gif ├── blox_into_blox.gif ├── building_screen.png ├── credits-edits.jpg ├── credits-edits.mp4 ├── credits_heat.png ├── dungeon_faster_speed_example.jpg ├── dungeon_faster_speed_example.mp4 ├── dungeon_master_dump.png ├── dungeon_master_speed_example.jpg ├── dungeon_master_speed_example.mp4 ├── editor_video.jpg ├── editor_video.mp4 ├── fog_approaches.html ├── fog_array.png ├── fog_charted.png ├── fog_clouds.png ├── fog_clouds_compile.png ├── fog_demo-loop.jpg ├── fog_demo-loop.mp4 ├── fog_make_basic.html ├── fog_pallette.png ├── fog_steps.png ├── fogtable_basic.html ├── forensic_analyzer.html ├── four_pages_of_notebook_code.jpg ├── gameplay_video.jpg ├── gameplay_video.mp4 ├── generic_demo.zip ├── generic_demo_1994-loop.jpg ├── generic_demo_1994-loop.mp4 ├── guido_sprites.png ├── head_compile-1-reverse.gif ├── head_compile-2-reverse.gif ├── head_compile-3-reverse.gif ├── head_compile-4-reverse.gif ├── heat_wave.html ├── heat_wave_effect.jpg ├── heat_wave_effect.mp4 ├── index.html ├── its_a_iigs.png ├── key_1.png ├── key_2.png ├── key_3.png ├── kings_quest_dump.png ├── kings_quest_homage.jpg ├── kings_quest_homage.mp4 ├── large_fog_table.html ├── map_format_general.png ├── map_translator.html ├── message_convert.html ├── mini_tv_scroll-1.gif ├── newmarios.png ├── notebook_pages.jpg ├── part_three.html ├── part_two.html ├── pea_scene.png ├── pizza.png ├── rez-out-slowed.jpg ├── rez-out-slowed.mp4 ├── rolling_hills.png ├── smt-hello_message.png ├── snail_sprite.png ├── sprite_edit_basic.html ├── styles.css ├── trolls_charset.png ├── two_layer_demo-a.gif ├── two_layer_demo-b.gif ├── windows_map_editor.jpg ├── windows_map_editor.mp4 ├── world_1_blockset.png ├── zogmap-key.png └── zogmap-level.png └── src ├── BLKS ├── WD11 └── WD11T ├── BOOT.SYS.S ├── BOSSFRAME.S ├── BUILDFLAGS ├── WORLD1FLAGS.S ├── WORLD2FLAGS.S ├── WORLD3FLAGS.S ├── WORLD4FLAGS.S ├── WORLD5FLAGS.S ├── WORLD6FLAGS.S └── WORLD7FLAGS.S ├── CREDITS.S ├── CREDITSEXTRA.S ├── FOGTESTER.S ├── KQD └── SCENE1 ├── LIB ├── BLOCKMAKER.S ├── BRIKBITS.S ├── CHARGEN.S ├── CHESTER.S ├── CHSOLID.S ├── COINGET.S ├── DEBUGGER.S ├── DECOMPACT.S ├── DEREZZ.S ├── FADER.S ├── FLAGPOLE.S ├── FLOWER.S ├── FOGIMPORT.S ├── JOYSTICKREAD.S ├── LIVESINC.S ├── MEMORYMAP.S ├── MOUSE.S ├── MOVEMENT.S ├── MUSHROOM.S ├── PALUP.S ├── PLAYER.S ├── PLAYSFX.S ├── PUFFSMOK.S ├── RECORDER.S ├── SCOREADD.S ├── SLIMBAL.S ├── SPRITEMAKER.S ├── TIMEADD.S ├── TURTLE.S ├── TVSCRNS.S ├── UNUSED.CODE.S ├── WAITKEY.S ├── WAITSYN.S ├── WINDOWEDPEA.S └── WORLDNAMES.S ├── MAIN.S ├── MAPS └── WD1A ├── PX ├── CHARSET ├── SPLASH.Z └── TITLE ├── SFX └── HADOU ├── SPEC ├── ACIDPT ├── CREDF1 └── CREDF2 ├── SPR ├── SPR1 ├── SPR1G └── SPR8G ├── SPRITEMAKER.S ├── TESTSHELL.S ├── TROLL.SYSTEM.S └── WORLD8.S /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/LICENSE -------------------------------------------------------------------------------- /Merryo_Trolls.2mg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/Merryo_Trolls.2mg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/README.md -------------------------------------------------------------------------------- /boot_dependencies/BASIC.System: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/boot_dependencies/BASIC.System -------------------------------------------------------------------------------- /boot_dependencies/PRODOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/boot_dependencies/PRODOS -------------------------------------------------------------------------------- /dev_tools/block_pointer_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_pointer_editor.html -------------------------------------------------------------------------------- /dev_tools/block_sets/world_1-block_pointers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_1-block_pointers.bin -------------------------------------------------------------------------------- /dev_tools/block_sets/world_1-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_1-blocks.png -------------------------------------------------------------------------------- /dev_tools/block_sets/world_2-block_pointers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_2-block_pointers.bin -------------------------------------------------------------------------------- /dev_tools/block_sets/world_2-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_2-blocks.png -------------------------------------------------------------------------------- /dev_tools/block_sets/world_3-block_pointers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_3-block_pointers.bin -------------------------------------------------------------------------------- /dev_tools/block_sets/world_3-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_3-blocks.png -------------------------------------------------------------------------------- /dev_tools/block_sets/world_4-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_4-blocks.png -------------------------------------------------------------------------------- /dev_tools/block_sets/world_5-block_pointers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_5-block_pointers.bin -------------------------------------------------------------------------------- /dev_tools/block_sets/world_5-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_5-blocks.png -------------------------------------------------------------------------------- /dev_tools/block_sets/world_6-block_pointers.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_6-block_pointers.bin -------------------------------------------------------------------------------- /dev_tools/block_sets/world_6-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/block_sets/world_6-blocks.png -------------------------------------------------------------------------------- /dev_tools/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/docker-compose.yml -------------------------------------------------------------------------------- /dev_tools/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/index.html -------------------------------------------------------------------------------- /dev_tools/level_combiner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_combiner.html -------------------------------------------------------------------------------- /dev_tools/level_editor/connects_editing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_editor/connects_editing.js -------------------------------------------------------------------------------- /dev_tools/level_editor/edit_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_editor/edit_history.js -------------------------------------------------------------------------------- /dev_tools/level_editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_editor/index.html -------------------------------------------------------------------------------- /dev_tools/level_editor/level_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_editor/level_set.js -------------------------------------------------------------------------------- /dev_tools/level_maps/world_1-level_1_to_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_maps/world_1-level_1_to_4.bin -------------------------------------------------------------------------------- /dev_tools/level_maps/world_2-level_1_to_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_maps/world_2-level_1_to_4.bin -------------------------------------------------------------------------------- /dev_tools/level_maps/world_3-level_1_to_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_maps/world_3-level_1_to_4.bin -------------------------------------------------------------------------------- /dev_tools/level_maps/world_4-level_1_to_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_maps/world_4-level_1_to_4.bin -------------------------------------------------------------------------------- /dev_tools/level_maps/world_5-level_1_to_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_maps/world_5-level_1_to_4.bin -------------------------------------------------------------------------------- /dev_tools/level_maps/world_6-level_1_to_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_maps/world_6-level_1_to_4.bin -------------------------------------------------------------------------------- /dev_tools/level_maps/world_7-level_1_to_4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/level_maps/world_7-level_1_to_4.bin -------------------------------------------------------------------------------- /dev_tools/lib/editor_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/lib/editor_tiles.png -------------------------------------------------------------------------------- /dev_tools/lib/editor_tiles.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/lib/editor_tiles.psd -------------------------------------------------------------------------------- /dev_tools/lib/mouse_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/lib/mouse_utils.js -------------------------------------------------------------------------------- /dev_tools/lib/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/lib/selection.js -------------------------------------------------------------------------------- /dev_tools/lib/tile_sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/lib/tile_sets.js -------------------------------------------------------------------------------- /dev_tools/scr_viewer_and_blockset_unwinder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/dev_tools/scr_viewer_and_blockset_unwinder.html -------------------------------------------------------------------------------- /grand_tour_website/1993-notes-trolls-guido_par.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/1993-notes-trolls-guido_par.jpg -------------------------------------------------------------------------------- /grand_tour_website/1994-notes-trolls-techno_id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/1994-notes-trolls-techno_id.jpg -------------------------------------------------------------------------------- /grand_tour_website/assembly_chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/assembly_chart.jpg -------------------------------------------------------------------------------- /grand_tour_website/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/block.png -------------------------------------------------------------------------------- /grand_tour_website/block_as_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/block_as_data.png -------------------------------------------------------------------------------- /grand_tour_website/block_grid-scr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/block_grid-scr.gif -------------------------------------------------------------------------------- /grand_tour_website/block_grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/block_grid.gif -------------------------------------------------------------------------------- /grand_tour_website/blox_into_blox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/blox_into_blox.gif -------------------------------------------------------------------------------- /grand_tour_website/building_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/building_screen.png -------------------------------------------------------------------------------- /grand_tour_website/credits-edits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/credits-edits.jpg -------------------------------------------------------------------------------- /grand_tour_website/credits-edits.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/credits-edits.mp4 -------------------------------------------------------------------------------- /grand_tour_website/credits_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/credits_heat.png -------------------------------------------------------------------------------- /grand_tour_website/dungeon_faster_speed_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/dungeon_faster_speed_example.jpg -------------------------------------------------------------------------------- /grand_tour_website/dungeon_faster_speed_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/dungeon_faster_speed_example.mp4 -------------------------------------------------------------------------------- /grand_tour_website/dungeon_master_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/dungeon_master_dump.png -------------------------------------------------------------------------------- /grand_tour_website/dungeon_master_speed_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/dungeon_master_speed_example.jpg -------------------------------------------------------------------------------- /grand_tour_website/dungeon_master_speed_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/dungeon_master_speed_example.mp4 -------------------------------------------------------------------------------- /grand_tour_website/editor_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/editor_video.jpg -------------------------------------------------------------------------------- /grand_tour_website/editor_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/editor_video.mp4 -------------------------------------------------------------------------------- /grand_tour_website/fog_approaches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_approaches.html -------------------------------------------------------------------------------- /grand_tour_website/fog_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_array.png -------------------------------------------------------------------------------- /grand_tour_website/fog_charted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_charted.png -------------------------------------------------------------------------------- /grand_tour_website/fog_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_clouds.png -------------------------------------------------------------------------------- /grand_tour_website/fog_clouds_compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_clouds_compile.png -------------------------------------------------------------------------------- /grand_tour_website/fog_demo-loop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_demo-loop.jpg -------------------------------------------------------------------------------- /grand_tour_website/fog_demo-loop.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_demo-loop.mp4 -------------------------------------------------------------------------------- /grand_tour_website/fog_make_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_make_basic.html -------------------------------------------------------------------------------- /grand_tour_website/fog_pallette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_pallette.png -------------------------------------------------------------------------------- /grand_tour_website/fog_steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fog_steps.png -------------------------------------------------------------------------------- /grand_tour_website/fogtable_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/fogtable_basic.html -------------------------------------------------------------------------------- /grand_tour_website/forensic_analyzer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/forensic_analyzer.html -------------------------------------------------------------------------------- /grand_tour_website/four_pages_of_notebook_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/four_pages_of_notebook_code.jpg -------------------------------------------------------------------------------- /grand_tour_website/gameplay_video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/gameplay_video.jpg -------------------------------------------------------------------------------- /grand_tour_website/gameplay_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/gameplay_video.mp4 -------------------------------------------------------------------------------- /grand_tour_website/generic_demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/generic_demo.zip -------------------------------------------------------------------------------- /grand_tour_website/generic_demo_1994-loop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/generic_demo_1994-loop.jpg -------------------------------------------------------------------------------- /grand_tour_website/generic_demo_1994-loop.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/generic_demo_1994-loop.mp4 -------------------------------------------------------------------------------- /grand_tour_website/guido_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/guido_sprites.png -------------------------------------------------------------------------------- /grand_tour_website/head_compile-1-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/head_compile-1-reverse.gif -------------------------------------------------------------------------------- /grand_tour_website/head_compile-2-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/head_compile-2-reverse.gif -------------------------------------------------------------------------------- /grand_tour_website/head_compile-3-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/head_compile-3-reverse.gif -------------------------------------------------------------------------------- /grand_tour_website/head_compile-4-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/head_compile-4-reverse.gif -------------------------------------------------------------------------------- /grand_tour_website/heat_wave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/heat_wave.html -------------------------------------------------------------------------------- /grand_tour_website/heat_wave_effect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/heat_wave_effect.jpg -------------------------------------------------------------------------------- /grand_tour_website/heat_wave_effect.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/heat_wave_effect.mp4 -------------------------------------------------------------------------------- /grand_tour_website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/index.html -------------------------------------------------------------------------------- /grand_tour_website/its_a_iigs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/its_a_iigs.png -------------------------------------------------------------------------------- /grand_tour_website/key_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/key_1.png -------------------------------------------------------------------------------- /grand_tour_website/key_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/key_2.png -------------------------------------------------------------------------------- /grand_tour_website/key_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/key_3.png -------------------------------------------------------------------------------- /grand_tour_website/kings_quest_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/kings_quest_dump.png -------------------------------------------------------------------------------- /grand_tour_website/kings_quest_homage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/kings_quest_homage.jpg -------------------------------------------------------------------------------- /grand_tour_website/kings_quest_homage.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/kings_quest_homage.mp4 -------------------------------------------------------------------------------- /grand_tour_website/large_fog_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/large_fog_table.html -------------------------------------------------------------------------------- /grand_tour_website/map_format_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/map_format_general.png -------------------------------------------------------------------------------- /grand_tour_website/map_translator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/map_translator.html -------------------------------------------------------------------------------- /grand_tour_website/message_convert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/message_convert.html -------------------------------------------------------------------------------- /grand_tour_website/mini_tv_scroll-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/mini_tv_scroll-1.gif -------------------------------------------------------------------------------- /grand_tour_website/newmarios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/newmarios.png -------------------------------------------------------------------------------- /grand_tour_website/notebook_pages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/notebook_pages.jpg -------------------------------------------------------------------------------- /grand_tour_website/part_three.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/part_three.html -------------------------------------------------------------------------------- /grand_tour_website/part_two.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/part_two.html -------------------------------------------------------------------------------- /grand_tour_website/pea_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/pea_scene.png -------------------------------------------------------------------------------- /grand_tour_website/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/pizza.png -------------------------------------------------------------------------------- /grand_tour_website/rez-out-slowed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/rez-out-slowed.jpg -------------------------------------------------------------------------------- /grand_tour_website/rez-out-slowed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/rez-out-slowed.mp4 -------------------------------------------------------------------------------- /grand_tour_website/rolling_hills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/rolling_hills.png -------------------------------------------------------------------------------- /grand_tour_website/smt-hello_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/smt-hello_message.png -------------------------------------------------------------------------------- /grand_tour_website/snail_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/snail_sprite.png -------------------------------------------------------------------------------- /grand_tour_website/sprite_edit_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/sprite_edit_basic.html -------------------------------------------------------------------------------- /grand_tour_website/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/styles.css -------------------------------------------------------------------------------- /grand_tour_website/trolls_charset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/trolls_charset.png -------------------------------------------------------------------------------- /grand_tour_website/two_layer_demo-a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/two_layer_demo-a.gif -------------------------------------------------------------------------------- /grand_tour_website/two_layer_demo-b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/two_layer_demo-b.gif -------------------------------------------------------------------------------- /grand_tour_website/windows_map_editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/windows_map_editor.jpg -------------------------------------------------------------------------------- /grand_tour_website/windows_map_editor.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/windows_map_editor.mp4 -------------------------------------------------------------------------------- /grand_tour_website/world_1_blockset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/world_1_blockset.png -------------------------------------------------------------------------------- /grand_tour_website/zogmap-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/zogmap-key.png -------------------------------------------------------------------------------- /grand_tour_website/zogmap-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/grand_tour_website/zogmap-level.png -------------------------------------------------------------------------------- /src/BLKS/WD11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BLKS/WD11 -------------------------------------------------------------------------------- /src/BLKS/WD11T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BLKS/WD11T -------------------------------------------------------------------------------- /src/BOOT.SYS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BOOT.SYS.S -------------------------------------------------------------------------------- /src/BOSSFRAME.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BOSSFRAME.S -------------------------------------------------------------------------------- /src/BUILDFLAGS/WORLD1FLAGS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BUILDFLAGS/WORLD1FLAGS.S -------------------------------------------------------------------------------- /src/BUILDFLAGS/WORLD2FLAGS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BUILDFLAGS/WORLD2FLAGS.S -------------------------------------------------------------------------------- /src/BUILDFLAGS/WORLD3FLAGS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BUILDFLAGS/WORLD3FLAGS.S -------------------------------------------------------------------------------- /src/BUILDFLAGS/WORLD4FLAGS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BUILDFLAGS/WORLD4FLAGS.S -------------------------------------------------------------------------------- /src/BUILDFLAGS/WORLD5FLAGS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BUILDFLAGS/WORLD5FLAGS.S -------------------------------------------------------------------------------- /src/BUILDFLAGS/WORLD6FLAGS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BUILDFLAGS/WORLD6FLAGS.S -------------------------------------------------------------------------------- /src/BUILDFLAGS/WORLD7FLAGS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/BUILDFLAGS/WORLD7FLAGS.S -------------------------------------------------------------------------------- /src/CREDITS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/CREDITS.S -------------------------------------------------------------------------------- /src/CREDITSEXTRA.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/CREDITSEXTRA.S -------------------------------------------------------------------------------- /src/FOGTESTER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/FOGTESTER.S -------------------------------------------------------------------------------- /src/KQD/SCENE1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/KQD/SCENE1 -------------------------------------------------------------------------------- /src/LIB/BLOCKMAKER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/BLOCKMAKER.S -------------------------------------------------------------------------------- /src/LIB/BRIKBITS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/BRIKBITS.S -------------------------------------------------------------------------------- /src/LIB/CHARGEN.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/CHARGEN.S -------------------------------------------------------------------------------- /src/LIB/CHESTER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/CHESTER.S -------------------------------------------------------------------------------- /src/LIB/CHSOLID.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/CHSOLID.S -------------------------------------------------------------------------------- /src/LIB/COINGET.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/COINGET.S -------------------------------------------------------------------------------- /src/LIB/DEBUGGER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/DEBUGGER.S -------------------------------------------------------------------------------- /src/LIB/DECOMPACT.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/DECOMPACT.S -------------------------------------------------------------------------------- /src/LIB/DEREZZ.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/DEREZZ.S -------------------------------------------------------------------------------- /src/LIB/FADER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/FADER.S -------------------------------------------------------------------------------- /src/LIB/FLAGPOLE.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/FLAGPOLE.S -------------------------------------------------------------------------------- /src/LIB/FLOWER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/FLOWER.S -------------------------------------------------------------------------------- /src/LIB/FOGIMPORT.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/FOGIMPORT.S -------------------------------------------------------------------------------- /src/LIB/JOYSTICKREAD.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/JOYSTICKREAD.S -------------------------------------------------------------------------------- /src/LIB/LIVESINC.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/LIVESINC.S -------------------------------------------------------------------------------- /src/LIB/MEMORYMAP.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/MEMORYMAP.S -------------------------------------------------------------------------------- /src/LIB/MOUSE.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/MOUSE.S -------------------------------------------------------------------------------- /src/LIB/MOVEMENT.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/MOVEMENT.S -------------------------------------------------------------------------------- /src/LIB/MUSHROOM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/MUSHROOM.S -------------------------------------------------------------------------------- /src/LIB/PALUP.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/PALUP.S -------------------------------------------------------------------------------- /src/LIB/PLAYER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/PLAYER.S -------------------------------------------------------------------------------- /src/LIB/PLAYSFX.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/PLAYSFX.S -------------------------------------------------------------------------------- /src/LIB/PUFFSMOK.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/PUFFSMOK.S -------------------------------------------------------------------------------- /src/LIB/RECORDER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/RECORDER.S -------------------------------------------------------------------------------- /src/LIB/SCOREADD.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/SCOREADD.S -------------------------------------------------------------------------------- /src/LIB/SLIMBAL.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/SLIMBAL.S -------------------------------------------------------------------------------- /src/LIB/SPRITEMAKER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/SPRITEMAKER.S -------------------------------------------------------------------------------- /src/LIB/TIMEADD.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/TIMEADD.S -------------------------------------------------------------------------------- /src/LIB/TURTLE.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/TURTLE.S -------------------------------------------------------------------------------- /src/LIB/TVSCRNS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/TVSCRNS.S -------------------------------------------------------------------------------- /src/LIB/UNUSED.CODE.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/UNUSED.CODE.S -------------------------------------------------------------------------------- /src/LIB/WAITKEY.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/WAITKEY.S -------------------------------------------------------------------------------- /src/LIB/WAITSYN.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/WAITSYN.S -------------------------------------------------------------------------------- /src/LIB/WINDOWEDPEA.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/WINDOWEDPEA.S -------------------------------------------------------------------------------- /src/LIB/WORLDNAMES.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/LIB/WORLDNAMES.S -------------------------------------------------------------------------------- /src/MAIN.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/MAIN.S -------------------------------------------------------------------------------- /src/MAPS/WD1A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/MAPS/WD1A -------------------------------------------------------------------------------- /src/PX/CHARSET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/PX/CHARSET -------------------------------------------------------------------------------- /src/PX/SPLASH.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/PX/SPLASH.Z -------------------------------------------------------------------------------- /src/PX/TITLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/PX/TITLE -------------------------------------------------------------------------------- /src/SFX/HADOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SFX/HADOU -------------------------------------------------------------------------------- /src/SPEC/ACIDPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SPEC/ACIDPT -------------------------------------------------------------------------------- /src/SPEC/CREDF1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SPEC/CREDF1 -------------------------------------------------------------------------------- /src/SPEC/CREDF2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SPEC/CREDF2 -------------------------------------------------------------------------------- /src/SPR/SPR1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SPR/SPR1 -------------------------------------------------------------------------------- /src/SPR/SPR1G: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SPR/SPR1G -------------------------------------------------------------------------------- /src/SPR/SPR8G: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SPR/SPR8G -------------------------------------------------------------------------------- /src/SPRITEMAKER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/SPRITEMAKER.S -------------------------------------------------------------------------------- /src/TESTSHELL.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/TESTSHELL.S -------------------------------------------------------------------------------- /src/TROLL.SYSTEM.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/TROLL.SYSTEM.S -------------------------------------------------------------------------------- /src/WORLD8.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBirkel/merryo_trolls/HEAD/src/WORLD8.S --------------------------------------------------------------------------------