├── .editorconfig ├── .gitignore ├── README.md ├── diario.md ├── docs ├── config.h.md ├── quickstart.md ├── tutorial-cap01.md ├── tutorial-cap02.md └── wiki-img │ ├── 01_dogmole.jpg │ ├── 01_lala.jpg │ ├── 01_lala.png │ ├── 01_meemaid.jpg │ ├── 01_mono.png │ ├── 01_seto.png │ ├── 02_console.png │ ├── 02_empty_ts.png │ ├── 02_lah.png │ ├── 02_palette.png │ ├── 02_perils.png │ ├── 02_ps_wip.PNG │ ├── 02_tiles.png │ ├── 02_tileset_16.png │ ├── 02_ts_d'veel'ng.png │ ├── 02_ts_lah.png │ ├── 02_ts_monono.png │ ├── 02_ts_perils.png │ ├── 02_ts_zcp.png │ ├── 07_colision.png │ ├── cpc_pal.png │ ├── jet_paco │ ├── ending.png │ ├── enems-work.png │ ├── font.png │ ├── hex_1.png │ ├── hex_2.png │ ├── loading.png │ ├── mappy_new.png │ ├── mappy_new_wrong.png │ ├── mappy_orig.png │ ├── marco.png │ ├── ponedor_1.png │ ├── ponedor_2.png │ ├── sprites.png │ ├── title.png │ └── work.png │ └── photo_2022-01-10_14-06-43.jpg ├── env ├── XVI32.zip ├── cpc_pal.aco ├── cpc_pal.act ├── cpc_pal.pal ├── cpc_pal.png ├── mappy-mojon.zip ├── z80_cpc_timings_cheat_sheet.20131019.pdf └── z88dk_mt.7z ├── examples ├── dogmole │ ├── dev │ └── gfx │ │ └── work.png ├── lalalah │ ├── bin │ │ ├── ending.bin │ │ ├── endingc.bin │ │ ├── font.bin │ │ ├── lala_beta.c.bin │ │ ├── lala_lah.c.bin │ │ ├── list.txt │ │ ├── loader.bin │ │ ├── loading.bin │ │ ├── loading.c.bin │ │ ├── marco.bin │ │ ├── marcoc.bin │ │ ├── preloader.bin │ │ ├── sprites.bin │ │ ├── sprites_bullet.bin │ │ ├── sprites_extra.bin │ │ ├── title.bin │ │ ├── titlec.bin │ │ └── work.bin │ ├── dev │ │ ├── 128k.h │ │ ├── aplib.h │ │ ├── assets │ │ │ ├── ay_fx_numbers.h │ │ │ ├── cpc_TrPixLutM0.asm │ │ │ ├── cpc_TrPixLutM1.asm │ │ │ ├── enems.h │ │ │ ├── extrasprites.h │ │ │ ├── instrumentos.h │ │ │ ├── levels.h │ │ │ ├── mapa.h │ │ │ ├── pal.h │ │ │ ├── sprites-empty.h │ │ │ ├── sprites.h │ │ │ ├── spriteset_mappings.h │ │ │ ├── tileset.h │ │ │ ├── trpixlut.bin │ │ │ ├── trpixlut.h │ │ │ └── trpixlutc.bin │ │ ├── autodefs.h │ │ ├── compile.bat │ │ ├── crt.asm │ │ ├── definitions.h │ │ ├── engine.h │ │ ├── engine │ │ │ ├── breakable.h │ │ │ ├── bullets.h │ │ │ ├── c_levels.h │ │ │ ├── enem_mods │ │ │ │ ├── enem_type_fanties.h │ │ │ │ ├── enem_type_lineal.h │ │ │ │ ├── enem_type_orthoshooters.h │ │ │ │ ├── enem_type_pursuers.h │ │ │ │ └── enem_type_pursuers_asm.h │ │ │ ├── enengine.h │ │ │ ├── general.h │ │ │ ├── hotspots.h │ │ │ ├── player.h │ │ │ ├── simple_cocos.h │ │ │ └── update.h │ │ ├── lala_lah.bin │ │ ├── lala_lah.cdt │ │ ├── lala_lah.map │ │ ├── lala_lah.sna │ │ ├── loader │ │ │ ├── loadercpc-old.asm-orig │ │ │ ├── loadercpc.asm │ │ │ ├── loadercpc.asm-orig │ │ │ ├── preloadercpc.asm │ │ │ └── preloadercpc.asm-orig │ │ ├── mainloop.h │ │ ├── mainloop │ │ │ ├── flick_screen.h │ │ │ ├── game_loop.h │ │ │ └── hud.h │ │ ├── mk1.c │ │ ├── mtasmlib.h │ │ ├── my │ │ │ ├── ci │ │ │ │ ├── after_game.h │ │ │ │ ├── after_game_loop.h │ │ │ │ ├── after_game_over.h │ │ │ │ ├── after_load.h │ │ │ │ ├── before_entering_screen.h │ │ │ │ ├── before_game.h │ │ │ │ ├── bg_collision │ │ │ │ │ ├── obstacle_down.h │ │ │ │ │ ├── obstacle_left.h │ │ │ │ │ ├── obstacle_right.h │ │ │ │ │ └── obstacle_up.h │ │ │ │ ├── custom_enems_player_collision.h │ │ │ │ ├── custom_evil_tile_check.h │ │ │ │ ├── custom_heng.h │ │ │ │ ├── custom_veng.h │ │ │ │ ├── enems_custom_respawn.h │ │ │ │ ├── enems_extra_actions.h │ │ │ │ ├── enems_extra_mods.h │ │ │ │ ├── enems_load.h │ │ │ │ ├── enems_move.h │ │ │ │ ├── entering_game.h │ │ │ │ ├── entering_screen.h │ │ │ │ ├── extra_functions.h │ │ │ │ ├── extra_routines.h │ │ │ │ ├── extra_vars.h │ │ │ │ ├── hotspots_custom.h │ │ │ │ ├── map_renderer_t_modification.h │ │ │ │ ├── on_enems_collision.h │ │ │ │ ├── on_enems_killed.h │ │ │ │ ├── on_jetpac_boost.h │ │ │ │ ├── on_player_fires.h │ │ │ │ ├── on_player_killed.h │ │ │ │ ├── on_special_tile.h │ │ │ │ ├── on_tile_pushed.h │ │ │ │ ├── on_unlocked_bolt.h │ │ │ │ ├── on_wall_broken.h │ │ │ │ └── on_wall_hit.h │ │ │ ├── config.h │ │ │ ├── custom_animation.h │ │ │ ├── extern.h │ │ │ ├── fixed_screens.h │ │ │ ├── level_screen.h │ │ │ ├── levelset.h │ │ │ ├── map_custom_decoder.h │ │ │ ├── msc-config.h │ │ │ ├── msc.h │ │ │ ├── title_screen.h │ │ │ └── wyz │ │ │ │ ├── efectos.h │ │ │ │ ├── instrumentos.h │ │ │ │ └── songs.h │ │ ├── pantallas.h │ │ ├── printer.h │ │ ├── prototypes.h │ │ ├── savegame.h │ │ ├── scripts.bin │ │ ├── setenv.bat │ │ ├── setenv.ps1 │ │ ├── tilanim.h │ │ ├── tilemap_conf.asm │ │ └── wyz_player.h │ ├── enems │ │ ├── enems.ene │ │ ├── mapa.MAP │ │ ├── ponedor.bat │ │ └── work.png │ ├── gfx │ │ ├── cpc_pal.png │ │ ├── ct.act │ │ ├── ending.png │ │ ├── font.png │ │ ├── loading.png │ │ ├── marco.png │ │ ├── mode1 │ │ │ ├── cpc_pal.png │ │ │ ├── ending.png │ │ │ ├── font.png │ │ │ ├── loading.png │ │ │ ├── marco.png │ │ │ ├── pal.png │ │ │ ├── pal_loading.png │ │ │ ├── sprites.png │ │ │ ├── sprites_bullet.png │ │ │ ├── sprites_extra.png │ │ │ ├── title.png │ │ │ └── work.png │ │ ├── pal.png │ │ ├── pal_loading.png │ │ ├── sprites.png │ │ ├── sprites_bullet.png │ │ ├── sprites_extra.png │ │ ├── title.png │ │ ├── title.scr │ │ └── work.png │ ├── levels │ │ ├── behs.txt │ │ ├── extrasprites.asm │ │ ├── font.png │ │ └── makelevels.bat │ ├── map │ │ ├── mapa.MAP │ │ └── mapa.fmp │ ├── mus │ │ ├── 00_title.mus │ │ ├── 00_title.mus.bin │ │ ├── 01_ingame.mus │ │ ├── 01_ingame.mus.asm │ │ ├── 01_ingame.mus.bin │ │ ├── compress_songs.bat │ │ ├── efectos.asm │ │ ├── instrumentos.asm │ │ └── wyz │ │ │ ├── 00_title.wyz │ │ │ └── 01_ingame.wyz │ ├── script │ │ ├── dogmole.spt │ │ ├── motor-de-clausulas.txt │ │ ├── msc-config.h │ │ ├── msc.h │ │ ├── scripts.bin │ │ └── test.spt │ ├── spare │ │ ├── CPC_27_ colours.act │ │ ├── WYZPROPLAY47c_CPC.ASM │ │ ├── WYZProPlay47cCPC.ASM │ │ ├── compile_128k_sample.bat │ │ ├── easymenu.h │ │ ├── extern-textos.h │ │ ├── intro.h │ │ └── loader.bas │ └── trash │ │ ├── mkcdt.bat │ │ ├── placeholder │ │ └── test.cdt └── perils │ ├── bin │ ├── ending.bin │ ├── endingc.bin │ ├── font.bin │ ├── lala_beta.c.bin │ ├── list.txt │ ├── loader.bin │ ├── loading.bin │ ├── loading.c.bin │ ├── marco.bin │ ├── marcoc.bin │ ├── perils.c.bin │ ├── preloader.bin │ ├── sprites.bin │ ├── sprites_bullet.bin │ ├── sprites_extra.bin │ ├── title.bin │ ├── titlec.bin │ └── work.bin │ ├── compile.bat │ ├── dev │ ├── 128k.h │ ├── aplib.h │ ├── assets │ │ ├── ay_fx_numbers.h │ │ ├── cpc_TrPixLutM0.asm │ │ ├── cpc_TrPixLutM1.asm │ │ ├── enems.h │ │ ├── extrasprites.h │ │ ├── instrumentos.h │ │ ├── levels.h │ │ ├── mapa.h │ │ ├── pal.h │ │ ├── sprites-empty.h │ │ ├── sprites.h │ │ ├── spriteset_mappings.h │ │ ├── tileset.h │ │ ├── trpixlut.bin │ │ ├── trpixlut.h │ │ └── trpixlutc.bin │ ├── autodefs.h │ ├── compile.bat │ ├── crt.asm │ ├── definitions.h │ ├── engine.h │ ├── engine │ │ ├── breakable.h │ │ ├── bullets.h │ │ ├── c_levels.h │ │ ├── enem_mods │ │ │ ├── enem_type_fanties.h │ │ │ ├── enem_type_lineal.h │ │ │ ├── enem_type_orthoshooters.h │ │ │ ├── enem_type_pursuers.h │ │ │ └── enem_type_pursuers_asm.h │ │ ├── enengine.h │ │ ├── general.h │ │ ├── hotspots.h │ │ ├── player.h │ │ ├── simple_cocos.h │ │ └── update.h │ ├── loader │ │ ├── loadercpc-old.asm-orig │ │ ├── loadercpc.asm │ │ ├── loadercpc.asm-orig │ │ ├── preloadercpc.asm │ │ └── preloadercpc.asm-orig │ ├── mainloop.h │ ├── mainloop │ │ ├── flick_screen.h │ │ ├── game_loop.h │ │ └── hud.h │ ├── mk1.c │ ├── mk1.c.asm │ ├── mtasmlib.h │ ├── my │ │ ├── ci │ │ │ ├── after_game.h │ │ │ ├── after_game_loop.h │ │ │ ├── after_game_over.h │ │ │ ├── after_load.h │ │ │ ├── before_entering_screen.h │ │ │ ├── before_game.h │ │ │ ├── bg_collision │ │ │ │ ├── obstacle_down.h │ │ │ │ ├── obstacle_left.h │ │ │ │ ├── obstacle_right.h │ │ │ │ └── obstacle_up.h │ │ │ ├── custom_enems_player_collision.h │ │ │ ├── custom_evil_tile_check.h │ │ │ ├── custom_heng.h │ │ │ ├── custom_veng.h │ │ │ ├── enems_custom_respawn.h │ │ │ ├── enems_extra_actions.h │ │ │ ├── enems_extra_mods.h │ │ │ ├── enems_load.h │ │ │ ├── enems_move.h │ │ │ ├── entering_game.h │ │ │ ├── entering_screen.h │ │ │ ├── extra_functions.h │ │ │ ├── extra_routines.h │ │ │ ├── extra_vars.h │ │ │ ├── hotspots_custom.h │ │ │ ├── map_renderer_t_modification.h │ │ │ ├── on_enems_collision.h │ │ │ ├── on_enems_killed.h │ │ │ ├── on_jetpac_boost.h │ │ │ ├── on_player_fires.h │ │ │ ├── on_player_killed.h │ │ │ ├── on_special_tile.h │ │ │ ├── on_tile_pushed.h │ │ │ ├── on_unlocked_bolt.h │ │ │ ├── on_wall_broken.h │ │ │ └── on_wall_hit.h │ │ ├── config.h │ │ ├── custom_animation.h │ │ ├── extern.h │ │ ├── fixed_screens.h │ │ ├── level_screen.h │ │ ├── levelset.h │ │ ├── map_custom_decoder.h │ │ ├── msc-config.h │ │ ├── msc.h │ │ ├── title_screen.h │ │ └── wyz │ │ │ ├── efectos.h │ │ │ ├── instrumentos.h │ │ │ └── songs.h │ ├── pantallas.h │ ├── perils.asm │ ├── perils.bin │ ├── perils.cdt │ ├── perils.map │ ├── perils.sna │ ├── printer.h │ ├── prototypes.h │ ├── savegame.h │ ├── scripts.bin │ ├── setenv.bat │ ├── setenv.ps1 │ ├── tilanim.h │ ├── tilemap_conf.asm │ └── wyz_player.h │ ├── enems │ ├── boh.MAP │ ├── enems.ene │ ├── leeme.txt │ ├── mapa.MAP │ └── work.png │ ├── gfx │ ├── cpc_pal.png │ ├── ct.act │ ├── cutse.png │ ├── ending.png │ ├── font.png │ ├── loading.png │ ├── marco.png │ ├── pal.png │ ├── pal_loading.png │ ├── sprites.png │ ├── sprites_bullet.png │ ├── sprites_extra.png │ ├── title.png │ ├── title.scr │ └── work.png │ ├── levels │ ├── behs.txt │ ├── extrasprites.asm │ ├── font.png │ └── makelevels.bat │ ├── map │ ├── mapa.MAP │ └── mapa.fmp │ ├── mus │ ├── 00_title.mus │ ├── 00_title.mus.bin │ ├── 01_ingame.mus │ ├── 01_ingame.mus.asm │ ├── 01_ingame.mus.bin │ ├── compress_songs.bat │ ├── efectos.asm │ ├── instrumentos.asm │ └── wyz │ │ ├── 00_title.wyz │ │ └── 01_ingame.wyz │ ├── script │ ├── dogmole.spt │ ├── motor-de-clausulas.txt │ ├── msc-config.h │ ├── msc.h │ ├── scripts.bin │ └── test.spt │ ├── show │ ├── perils--20220406a.cdt │ ├── perils--20220406a.sna │ ├── perils--20220409a.cdt │ └── perils--20220409a.sna │ ├── spare │ ├── CPC_27_ colours.act │ ├── WYZPROPLAY47c_CPC.ASM │ ├── WYZProPlay47cCPC.ASM │ ├── compile_128k_sample.bat │ ├── easymenu.h │ ├── extern-textos.h │ ├── intro.h │ └── loader.bas │ └── trash │ ├── mkcdt.bat │ ├── placeholder │ └── test.cdt ├── lib ├── cpcrslib │ ├── CPCconfig.def │ ├── CPCconfig_fg.def │ ├── CPCconfig_normal.def │ ├── README.md │ ├── borra.bat │ ├── cambios.txt │ ├── cosas.md │ ├── cpc_AnyKeyPressed.asm │ ├── cpc_AssignKey.asm │ ├── cpc_Bit2Mask.asm │ ├── cpc_BlitSuperBuffer.asm │ ├── cpc_Chars.asm │ ├── cpc_Chars8.asm │ ├── cpc_ClrScr.asm │ ├── cpc_CollSp.asm │ ├── cpc_DeleteKeys.asm │ ├── cpc_DisableFirmware.asm │ ├── cpc_EnableFirmware.asm │ ├── cpc_GetScrAddress.asm │ ├── cpc_GetScrAddress0.asm │ ├── cpc_GetSp.asm │ ├── cpc_GetSp0.asm │ ├── cpc_GetTiles.asm │ ├── cpc_InitTileMap.asm │ ├── cpc_InputText.asm │ ├── cpc_InvalidateRect.asm │ ├── cpc_KeysData.asm │ ├── cpc_PrintGphStr.asm │ ├── cpc_PrintGphStr0.asm │ ├── cpc_PrintGphStr0M1.asm │ ├── cpc_PrintGphStr2X.asm │ ├── cpc_PrintGphStrM1.asm │ ├── cpc_PrintGphStrM12X.asm │ ├── cpc_PrintGphStrStd.asm │ ├── cpc_PrintGphStrStd0.asm │ ├── cpc_PrintGphStrStdXY.asm │ ├── cpc_PrintGphStrXY.asm │ ├── cpc_PrintGphStrXY2X.asm │ ├── cpc_PrintGphStrXYM1.asm │ ├── cpc_PrintGphStrXYM12X.asm │ ├── cpc_PrintStr.asm │ ├── cpc_PutCpSpTileMap2b.asm │ ├── cpc_PutMaskSp.asm │ ├── cpc_PutMaskSp0.asm │ ├── cpc_PutMaskSp2x8.asm │ ├── cpc_PutMaskSp4x16.asm │ ├── cpc_PutMaskSpTileMap2b.asm │ ├── cpc_PutMaskSprite.asm │ ├── cpc_PutMaskSpriteTileMap2b.asm │ ├── cpc_PutORSpTileMap2b.asm │ ├── cpc_PutSp.asm │ ├── cpc_PutSp0.asm │ ├── cpc_PutSpTileMap.asm │ ├── cpc_PutSpTileMap16x16PxM1.asm │ ├── cpc_PutSpTileMap16x24PxM1.asm │ ├── cpc_PutSpTileMap2b.asm │ ├── cpc_PutSpTileMap4x8.asm │ ├── cpc_PutSpTileMap4x8Px.asm │ ├── cpc_PutSpTileMap8x16.asm │ ├── cpc_PutSpTileMap8x16Px.asm │ ├── cpc_PutSpTileMap8x24.asm │ ├── cpc_PutSpTileMap8x24Px.asm │ ├── cpc_PutSpTileMap8x8PxM1.asm │ ├── cpc_PutSpTileMapO.asm │ ├── cpc_PutSpTr.asm │ ├── cpc_PutSpTr0.asm │ ├── cpc_PutSpXOR.asm │ ├── cpc_PutSpXOR0.asm │ ├── cpc_PutSprite.asm │ ├── cpc_PutSpriteXOR.asm │ ├── cpc_PutTile2x8.asm │ ├── cpc_PutTile2x8b.asm │ ├── cpc_PutTile4x16.asm │ ├── cpc_PutTiles.asm │ ├── cpc_PutTrSp16x16TileMap2bPxM1.asm │ ├── cpc_PutTrSp16x24TileMap2bPxM1.asm │ ├── cpc_PutTrSp4x8TileMap2b.asm │ ├── cpc_PutTrSp4x8TileMap2bG.asm │ ├── cpc_PutTrSp4x8TileMap2bGPx.asm │ ├── cpc_PutTrSp4x8TileMap2bPx.asm │ ├── cpc_PutTrSp8x16TileMap2b.asm │ ├── cpc_PutTrSp8x16TileMap2bG.asm │ ├── cpc_PutTrSp8x16TileMap2bGPx.asm │ ├── cpc_PutTrSp8x16TileMap2bPx.asm │ ├── cpc_PutTrSp8x24TileMap2b.asm │ ├── cpc_PutTrSp8x24TileMap2bG.asm │ ├── cpc_PutTrSp8x24TileMap2bGPx.asm │ ├── cpc_PutTrSp8x24TileMap2bPx.asm │ ├── cpc_PutTrSp8x8TileMap2bPxM1.asm │ ├── cpc_PutTrSpTileMap2b.asm │ ├── cpc_PutTrSpriteTileMap2b.asm │ ├── cpc_RLI.asm │ ├── cpc_RRI.asm │ ├── cpc_Random.asm │ ├── cpc_ReadTile.asm │ ├── cpc_RedefineKey.asm │ ├── cpc_ResetTouchedTiles-orig.asm │ ├── cpc_ResetTouchedTiles.asm │ ├── cpc_ScanKeyboard.asm │ ├── cpc_ScrollLeft.asm │ ├── cpc_ScrollLeft0.asm │ ├── cpc_ScrollRight.asm │ ├── cpc_ScrollRight0.asm │ ├── cpc_SetBorder.asm │ ├── cpc_SetColorGphStr.asm │ ├── cpc_SetColorGphStrM1.asm │ ├── cpc_SetColour.asm │ ├── cpc_SetInk.asm │ ├── cpc_SetInkGphStr.asm │ ├── cpc_SetInkGphStrM1.asm │ ├── cpc_SetMode.asm │ ├── cpc_SetModo.asm │ ├── cpc_SetTile.asm │ ├── cpc_SetTouchTileXY.asm │ ├── cpc_ShowScrTileMap.asm │ ├── cpc_ShowScrTileMap2.asm │ ├── cpc_ShowTileMap.asm │ ├── cpc_ShowTileMap.asm-new │ ├── cpc_ShowTileMap_orig.asm │ ├── cpc_ShowTouchedTiles-orig.asm │ ├── cpc_ShowTouchedTiles.asm │ ├── cpc_ShowTouchedTiles.asm-orig │ ├── cpc_ShowTouchedTiles2.asm │ ├── cpc_SpRLM1.asm │ ├── cpc_SpRRM1.asm │ ├── cpc_SpUpdX.asm │ ├── cpc_SpUpdY.asm │ ├── cpc_SuperbufferAddress.asm │ ├── cpc_TblLookup.asm │ ├── cpc_TestKey.asm │ ├── cpc_TestKeyF.asm │ ├── cpc_TestKeyboard.asm │ ├── cpc_TouchTileSpXY.asm │ ├── cpc_TouchTileXY.asm │ ├── cpc_TouchTiles.asm │ ├── cpc_TrPixLut.asm │ ├── cpc_UnExo.asm │ ├── cpc_Uncrunch.asm │ ├── cpc_UpdScr-orig.asm │ ├── cpc_UpdScr.asm │ ├── cpc_UpdScr.asm-strait │ ├── cpc_UpdScrAddresses.asm │ ├── cpc_UpdTileTable-orig.asm │ ├── cpc_UpdTileTable.asm │ ├── cpc_UpdTileTableSprites.asm │ ├── cpc_UpdTileTable_norepeat.asm │ ├── cpc_UpdateTileMap.asm │ ├── cpc_bitleft2mask.asm │ ├── cpc_bitright2mask.asm │ ├── cpcrslib.h │ ├── cpcrslib.lib │ ├── cpcrslib.lst │ ├── cpcrslib_fg.lib │ ├── make.bat │ ├── multiplication1.asm │ ├── multiplication2.asm │ ├── output.txt │ ├── setenv.bat │ └── setenv_x86.bat ├── cpcrslib_bak_20220601.7z └── update-libs.bat ├── released ├── helmet │ ├── README.md │ ├── bin │ │ ├── behs0_1.bin │ │ ├── behs0_1c.bin │ │ ├── ending.bin │ │ ├── endingc.bin │ │ ├── enems_hotspots0.bin │ │ ├── enems_hotspots0c.bin │ │ ├── enems_hotspots1.bin │ │ ├── enems_hotspots1c.bin │ │ ├── enems_hotspots2.bin │ │ ├── enems_hotspots2c.bin │ │ ├── enems_hotspots3.bin │ │ ├── enems_hotspots3c.bin │ │ ├── enems_hotspots4.bin │ │ ├── enems_hotspots4c.bin │ │ ├── font.bin │ │ ├── helmet.c.bin │ │ ├── lala_beta.c.bin │ │ ├── list.txt │ │ ├── loader.bin │ │ ├── loading.bin │ │ ├── loading.c.bin │ │ ├── mapa0.bin │ │ ├── mapa0c.bin │ │ ├── mapa1.bin │ │ ├── mapa1c.bin │ │ ├── mapa2.bin │ │ ├── mapa2c.bin │ │ ├── marco.bin │ │ ├── marcoc.bin │ │ ├── preloader.bin │ │ ├── preloading.bin │ │ ├── preloading.c.bin │ │ ├── sprites.bin │ │ ├── sprites_bullet.bin │ │ ├── sprites_extra.bin │ │ ├── title.bin │ │ ├── titlec.bin │ │ └── work.bin │ ├── dev │ │ ├── 128k.h │ │ ├── aplib.h │ │ ├── assets │ │ │ ├── ay_fx_numbers.h │ │ │ ├── cpc_TrPixLutM0.asm │ │ │ ├── cpc_TrPixLutM1.asm │ │ │ ├── enems.h │ │ │ ├── extrasprites.h │ │ │ ├── instrumentos.h │ │ │ ├── levels.h │ │ │ ├── mapa.h │ │ │ ├── pal.h │ │ │ ├── pal_b.h │ │ │ ├── pal_c.h │ │ │ ├── pal_d.h │ │ │ ├── sprites-empty.h │ │ │ ├── sprites.h │ │ │ ├── spriteset_mappings.h │ │ │ ├── tileset.h │ │ │ ├── trpixlut.bin │ │ │ ├── trpixlut.h │ │ │ └── trpixlutc.bin │ │ ├── autodefs.h │ │ ├── behindtilemasks.asm │ │ ├── compile.bat │ │ ├── crt.asm │ │ ├── definitions.h │ │ ├── engine.h │ │ ├── engine │ │ │ ├── breakable.h │ │ │ ├── bullets.h │ │ │ ├── c_levels.h │ │ │ ├── enem_mods │ │ │ │ ├── enem_type_fanties.h │ │ │ │ ├── enem_type_lineal.h │ │ │ │ ├── enem_type_orthoshooters.h │ │ │ │ ├── enem_type_pursuers.h │ │ │ │ └── enem_type_pursuers_asm.h │ │ │ ├── enengine.h │ │ │ ├── general.h │ │ │ ├── hotspots.h │ │ │ ├── player.h │ │ │ ├── simple_cocos.h │ │ │ └── update.h │ │ ├── helmet.bin │ │ ├── helmet.cdt │ │ ├── helmet.map │ │ ├── helmet.sna │ │ ├── loader │ │ │ ├── loadercpc-old.asm-orig │ │ │ ├── loadercpc.asm │ │ │ ├── loadercpc.asm-orig │ │ │ ├── preloadercpc.asm │ │ │ └── preloadercpc.asm-orig │ │ ├── mainloop.h │ │ ├── mainloop │ │ │ ├── flick_screen.h │ │ │ ├── game_loop.h │ │ │ └── hud.h │ │ ├── mk1.c │ │ ├── mtasmlib.h │ │ ├── my │ │ │ ├── ci │ │ │ │ ├── after_game.h │ │ │ │ ├── after_game_loop.h │ │ │ │ ├── after_game_over.h │ │ │ │ ├── after_load.h │ │ │ │ ├── before_entering_screen.h │ │ │ │ ├── before_game.h │ │ │ │ ├── bg_collision │ │ │ │ │ ├── obstacle_down.h │ │ │ │ │ ├── obstacle_left.h │ │ │ │ │ ├── obstacle_right.h │ │ │ │ │ └── obstacle_up.h │ │ │ │ ├── custom_enems_player_collision.h │ │ │ │ ├── custom_evil_tile_check.h │ │ │ │ ├── custom_heng.h │ │ │ │ ├── custom_veng.h │ │ │ │ ├── enems_custom_respawn.h │ │ │ │ ├── enems_extra_actions.h │ │ │ │ ├── enems_extra_mods.h │ │ │ │ ├── enems_load.h │ │ │ │ ├── enems_move.h │ │ │ │ ├── entering_game.h │ │ │ │ ├── entering_screen.h │ │ │ │ ├── extra_functions.h │ │ │ │ ├── extra_routines.h │ │ │ │ ├── extra_vars.h │ │ │ │ ├── hotspots_custom.h │ │ │ │ ├── map_renderer_t_modification.h │ │ │ │ ├── on_enems_collision.h │ │ │ │ ├── on_enems_killed.h │ │ │ │ ├── on_jetpac_boost.h │ │ │ │ ├── on_player_fires.h │ │ │ │ ├── on_player_killed.h │ │ │ │ ├── on_special_tile.h │ │ │ │ ├── on_tile_pushed.h │ │ │ │ ├── on_unlocked_bolt.h │ │ │ │ ├── on_wall_broken.h │ │ │ │ └── on_wall_hit.h │ │ │ ├── config.h │ │ │ ├── custom_animation.h │ │ │ ├── extern.h │ │ │ ├── fixed_screens.h │ │ │ ├── level_screen.h │ │ │ ├── levelset.h │ │ │ ├── map_custom_decoder.h │ │ │ ├── msc-config.h │ │ │ ├── msc.h │ │ │ ├── title_screen.h │ │ │ └── wyz │ │ │ │ ├── efectos.h │ │ │ │ ├── instrumentos.h │ │ │ │ └── songs.h │ │ ├── pantallas.h │ │ ├── printer.h │ │ ├── prototypes.h │ │ ├── savegame.h │ │ ├── scripts.bin │ │ ├── setenv.bat │ │ ├── tilanim.h │ │ ├── tilemap_conf.asm │ │ └── wyz_player.h │ ├── enems │ │ ├── boh.MAP │ │ ├── enems0.ene │ │ ├── enems1.ene │ │ ├── enems2.ene │ │ ├── enems3.ene │ │ ├── enems4.ene │ │ ├── enems4_fortest.ene │ │ ├── leeme.txt │ │ ├── mapa0.MAP │ │ ├── mapa1.MAP │ │ ├── mapa2.MAP │ │ ├── mapa2_fortest.MAP │ │ ├── ponedor.bat │ │ ├── spare.h │ │ ├── work0.png │ │ └── work1.png │ ├── gfx │ │ ├── aseprite_helmet_pal.aseprite │ │ ├── behs0_1.txt │ │ ├── cpc_pal.png │ │ ├── ending.png │ │ ├── font.png │ │ ├── loading.png │ │ ├── marco.png │ │ ├── pal.png │ │ ├── pal_b.png │ │ ├── pal_c.png │ │ ├── pal_d.png │ │ ├── pal_loading.png │ │ ├── pal_preloading.png │ │ ├── preloading.png │ │ ├── sprites.png │ │ ├── sprites_bullet.png │ │ ├── sprites_extra.png │ │ ├── title.png │ │ ├── title.scr │ │ └── work.png │ ├── levels │ │ ├── behs.txt │ │ ├── extrasprites.asm │ │ ├── font.png │ │ └── makelevels.bat │ ├── map │ │ ├── mapa0.MAP │ │ ├── mapa0.fmp │ │ ├── mapa1.FMP │ │ ├── mapa1.MAP │ │ ├── mapa2.MAP │ │ ├── mapa2.fmp │ │ ├── mapa2_fortest.MAP │ │ ├── mapa2_fortest.fmp │ │ └── mapa_trash.fmp │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--EN.cdt │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--EN.pk │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--EN.sna │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--EN.wav │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--ES.cdt │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--ES.pk │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--ES.sna │ ├── mojon-twins--sgt.helmet-training-day--definitivaw--ES.wav │ ├── mojon-twins--sgt.helmet-training-day--ed.definitivaw--EN.cdt │ ├── mojon-twins--sgt.helmet-training-day-2020--EN.cdt │ ├── mojon-twins--sgt.helmet-training-day-2020--EN.sna │ ├── mojon-twins--sgt.helmet-training-day-2020--ES.cdt │ ├── mojon-twins--sgt.helmet-training-day-2020--ES.sna │ ├── mus │ │ ├── 00_title.mus │ │ ├── 00_title.mus.bin │ │ ├── 01_ingamea.mus │ │ ├── 01_ingamea.mus.bin │ │ ├── 02_gover.mus │ │ ├── 02_gover.mus.bin │ │ ├── 03_ingameb.mus │ │ ├── 03_ingameb.mus.bin │ │ ├── 04_sclear.mus │ │ ├── 04_sclear.mus.bin │ │ ├── compress_songs.bat │ │ ├── efectos.asm │ │ ├── instrumentos.asm │ │ ├── murcia │ │ │ ├── gover.mus.bin │ │ │ ├── ingamea.mus.bin │ │ │ ├── ingameb.mus.bin │ │ │ ├── instrumentos.asm │ │ │ ├── sclear.mus.bin │ │ │ └── title.mus.bin │ │ └── wyz │ │ │ ├── 00_title.wyz │ │ │ └── 01_ingame.wyz │ ├── script │ │ ├── dogmole.spt │ │ ├── motor-de-clausulas.txt │ │ ├── msc-config.h │ │ ├── msc.h │ │ ├── scripts.bin │ │ └── test.spt │ └── show │ │ ├── helmet-definitivo--20220222a.cdt │ │ ├── helmet-definitivo--20220222a.sna │ │ ├── helmet-definitivo--20220223a.cdt │ │ ├── helmet-definitivo--20220223a.sna │ │ ├── helmet-definitivo--20220227a.cdt │ │ ├── helmet-definitivo--20220227a.sna │ │ ├── helmet-definitivo--20220310a.cdt │ │ ├── helmet-definitivo--20220310a.sna │ │ ├── helmet-definitivo--20220313a.cdt │ │ ├── helmet-definitivo--20220313a.sna │ │ ├── helmet_RC4_20200825a.cdt │ │ └── helmet_RC4_20200825a.sna ├── impossamal │ ├── bin │ │ ├── ending.bin │ │ ├── endingc.bin │ │ ├── font.bin │ │ ├── impossamal.c.bin │ │ ├── list.txt │ │ ├── loader.bin │ │ ├── loading.bin │ │ ├── loading.c.bin │ │ ├── marco.bin │ │ ├── marcoc.bin │ │ ├── preloader.bin │ │ ├── sprites.bin │ │ ├── sprites_bullet.bin │ │ ├── sprites_extra.bin │ │ ├── title.bin │ │ ├── titlec.bin │ │ └── work.bin │ ├── dev │ │ ├── 128k.h │ │ ├── IMPOSSAMAL-The-Mojon-Twins.cdt │ │ ├── aplib.h │ │ ├── assets │ │ │ ├── ay_fx_numbers.h │ │ │ ├── cpc_TrPixLutM0.asm │ │ │ ├── cpc_TrPixLutM1.asm │ │ │ ├── enems.h │ │ │ ├── extrasprites.h │ │ │ ├── levels.h │ │ │ ├── mapa.h │ │ │ ├── pal.h │ │ │ ├── sprites-empty.h │ │ │ ├── sprites.h │ │ │ ├── spriteset_mappings.h │ │ │ ├── tileset.h │ │ │ ├── trpixlut.bin │ │ │ ├── trpixlut.h │ │ │ └── trpixlutc.bin │ │ ├── autodefs.h │ │ ├── compile.bat │ │ ├── crt.asm │ │ ├── definitions.h │ │ ├── engine.h │ │ ├── engine │ │ │ ├── breakable.h │ │ │ ├── bullets.h │ │ │ ├── c_levels.h │ │ │ ├── enem_mods │ │ │ │ ├── enem_type_fanties.h │ │ │ │ ├── enem_type_lineal.h │ │ │ │ ├── enem_type_orthoshooters.h │ │ │ │ ├── enem_type_pursuers.h │ │ │ │ └── enem_type_pursuers_asm.h │ │ │ ├── enengine.h │ │ │ ├── general.h │ │ │ ├── hotspots.h │ │ │ ├── player.h │ │ │ ├── simple_cocos.h │ │ │ └── update.h │ │ ├── impossamal.bin │ │ ├── impossamal.map │ │ ├── impossamal.sna │ │ ├── loader │ │ │ ├── loadercpc-old.asm-orig │ │ │ ├── loadercpc.asm │ │ │ ├── loadercpc.asm-orig │ │ │ ├── preloadercpc.asm │ │ │ └── preloadercpc.asm-orig │ │ ├── mainloop.h │ │ ├── mainloop │ │ │ ├── flick_screen.h │ │ │ ├── game_loop.h │ │ │ └── hud.h │ │ ├── mk1.c │ │ ├── mk1.c.asm │ │ ├── mtasmlib.h │ │ ├── my │ │ │ ├── ci │ │ │ │ ├── after_game.h │ │ │ │ ├── after_game_loop.h │ │ │ │ ├── after_game_over.h │ │ │ │ ├── after_load.h │ │ │ │ ├── before_entering_screen.h │ │ │ │ ├── before_game.h │ │ │ │ ├── bg_collision │ │ │ │ │ ├── obstacle_down.h │ │ │ │ │ ├── obstacle_left.h │ │ │ │ │ ├── obstacle_right.h │ │ │ │ │ └── obstacle_up.h │ │ │ │ ├── custom_enems_player_collision.h │ │ │ │ ├── custom_evil_tile_check.h │ │ │ │ ├── custom_heng.h │ │ │ │ ├── custom_lock_clear.h │ │ │ │ ├── custom_veng.h │ │ │ │ ├── enems_before_move.h │ │ │ │ ├── enems_custom_respawn.h │ │ │ │ ├── enems_extra_actions.h │ │ │ │ ├── enems_extra_mods.h │ │ │ │ ├── enems_load.h │ │ │ │ ├── enems_move.h │ │ │ │ ├── entering_game.h │ │ │ │ ├── entering_screen.h │ │ │ │ ├── extra_functions.h │ │ │ │ ├── extra_routines.h │ │ │ │ ├── extra_vars.h │ │ │ │ ├── hotspot_setup_t_modification.h │ │ │ │ ├── hotspots_custom.h │ │ │ │ ├── map_renderer_t_modification.h │ │ │ │ ├── on_controller_pressed │ │ │ │ │ ├── down.h │ │ │ │ │ ├── fire.h │ │ │ │ │ ├── left.h │ │ │ │ │ ├── right.h │ │ │ │ │ └── up.h │ │ │ │ ├── on_enems_collision.h │ │ │ │ ├── on_enems_killed.h │ │ │ │ ├── on_jetpac_boost.h │ │ │ │ ├── on_map_tile_decoded.h │ │ │ │ ├── on_player_fires.h │ │ │ │ ├── on_player_killed.h │ │ │ │ ├── on_player_respawned.h │ │ │ │ ├── on_special_tile.h │ │ │ │ ├── on_tile_pushed.h │ │ │ │ ├── on_unlocked_bolt.h │ │ │ │ ├── on_wall_broken.h │ │ │ │ ├── on_wall_hit.h │ │ │ │ └── player_center_checks.h │ │ │ ├── config.h │ │ │ ├── custom_animation.h │ │ │ ├── extern.h │ │ │ ├── fixed_screens.h │ │ │ ├── level_screen.h │ │ │ ├── levelset.h │ │ │ ├── map_custom_decoder.h │ │ │ ├── msc-config.h │ │ │ ├── msc.h │ │ │ ├── title_screen.h │ │ │ └── wyz │ │ │ │ ├── efectos.h │ │ │ │ ├── instrumentos.h │ │ │ │ └── songs.h │ │ ├── pantallas.h │ │ ├── plugins │ │ │ ├── plugin_chac_chacs.h │ │ │ ├── plugin_linear_platformers.h │ │ │ └── textbox.h │ │ ├── printer.h │ │ ├── prototypes.h │ │ ├── savegame.h │ │ ├── scripts.bin │ │ ├── setenv.bat │ │ ├── setenv.ps1 │ │ ├── texts.bin │ │ ├── tilanim.h │ │ ├── tilemap_conf.asm │ │ ├── wyz_player.h │ │ └── zx0.h │ ├── enems │ │ ├── enems.ene │ │ ├── enems.h │ │ ├── leeme.txt │ │ ├── mapa.MAP │ │ ├── ponedor.bat │ │ └── work.png │ ├── gfx │ │ ├── cpc_pal.png │ │ ├── ct.act │ │ ├── ending.png │ │ ├── font.png │ │ ├── loading.png │ │ ├── mode1 │ │ │ ├── cpc_pal.png │ │ │ ├── ending.png │ │ │ ├── font.png │ │ │ ├── loading.png │ │ │ ├── marco.png │ │ │ ├── pal.png │ │ │ ├── pal_loading.png │ │ │ ├── sprites.png │ │ │ ├── sprites_bullet.png │ │ │ ├── sprites_extra.png │ │ │ ├── title.png │ │ │ └── work.png │ │ ├── pal.png │ │ ├── pal_loading.png │ │ ├── sprites.png │ │ ├── sprites_bullet.png │ │ ├── sprites_extra.png │ │ ├── title.png │ │ ├── title.scr │ │ └── work.png │ ├── levels │ │ ├── behs.txt │ │ ├── extrasprites.asm │ │ ├── font.png │ │ └── makelevels.bat │ ├── map │ │ ├── mapa.BAK │ │ ├── mapa.MAP │ │ └── mapa.fmp │ ├── mus │ │ ├── 00_title.mus │ │ ├── 00_title.mus.bin │ │ ├── 01_ingame.mus │ │ ├── 01_ingame.mus.bin │ │ ├── 02_ingame.mus │ │ ├── 02_ingame.mus.bin │ │ ├── 03_intro.mus │ │ ├── 03_intro.mus.bin │ │ ├── 04_gameover.mus │ │ ├── 04_gameover.mus.bin │ │ ├── ORIGINAL04_gameover.mus │ │ ├── compress_songs.bat │ │ ├── efectos.asm │ │ ├── instrumentos.asm │ │ └── wyz │ │ │ ├── 00_title.wyz │ │ │ └── 01_ingame.wyz │ ├── script │ │ ├── dogmole.spt │ │ ├── motor-de-clausulas.txt │ │ ├── msc-config.h │ │ ├── msc.h │ │ ├── scripts.bin │ │ └── test.spt │ ├── spare │ │ ├── CPC_27_ colours.act │ │ ├── WYZPROPLAY47c_CPC.ASM │ │ ├── WYZProPlay47cCPC.ASM │ │ ├── compile_128k_sample.bat │ │ ├── easymenu.h │ │ ├── extern-textos.h │ │ ├── intro.h │ │ └── loader.bas │ ├── texts │ │ └── texts.txt │ ├── trash │ │ ├── mkcdt.bat │ │ ├── placeholder │ │ └── test.cdt │ └── utils │ │ ├── 2cdt.exe │ │ ├── 2cdt.txt │ │ ├── AKSToBIN.exe │ │ ├── GenTape.exe │ │ ├── XVI32 │ │ ├── DOSWIN.XCT │ │ ├── EBCDEWIN.XCT │ │ ├── EBCUSWIN.XCT │ │ ├── WINDOS.XCT │ │ ├── WINEBCDE.XCT │ │ ├── WINEBCUS.XCT │ │ ├── XVI32.exe │ │ ├── XVI32.ini │ │ ├── XVI32U.HLP │ │ ├── XVI32U.chm │ │ ├── XVI32U.cnt │ │ └── readme.txt │ │ ├── apack.exe │ │ ├── apultra.exe │ │ ├── asm2z88dk.exe │ │ ├── bas2tap.exe │ │ ├── behs2bin.exe │ │ ├── bin2tap.exe │ │ ├── buildlevels_MK1.exe │ │ ├── chr2bin.exe │ │ ├── cpc2cdt.exe │ │ ├── cpctbin2sna.exe │ │ ├── downgrademap.exe │ │ ├── ene2bin_mk1.exe │ │ ├── ene2h.exe │ │ ├── flipenems.exe │ │ ├── flipmap.exe │ │ ├── h2ene.exe │ │ ├── h2map.exe │ │ ├── imanol.exe │ │ ├── librarian2.exe │ │ ├── mapcnv.exe │ │ ├── mapcnvbin.exe │ │ ├── mkts_om.exe │ │ ├── msc3_mk1.exe │ │ ├── pasmo-README.txt │ │ ├── pasmo.exe │ │ ├── png2scr.exe │ │ ├── ponedor.exe │ │ ├── printsize.exe │ │ ├── reordenator.exe │ │ ├── rle53map_sp.exe │ │ ├── rle62map_sp.exe │ │ ├── src │ │ ├── apultra-devCpp.7z │ │ ├── asm2z88dk.bas │ │ ├── behs2bin.bas │ │ ├── buildlevels_MK1.bas │ │ ├── chars2work.bas │ │ ├── chr2bin.bas │ │ ├── cmdlineparser.bas │ │ ├── cmdlineparser.bi │ │ ├── cpc2cdt │ │ │ ├── Makefile │ │ │ ├── Makefile.win │ │ │ ├── cpc2cdt.dev │ │ │ ├── cpc2cdt.layout │ │ │ └── src │ │ │ │ ├── cpc2cdt.c │ │ │ │ ├── tinytape.c │ │ │ │ └── tinytape.h │ │ ├── cpctbin2sna │ │ │ ├── Makefile.win │ │ │ ├── cpctbin2sna.dev │ │ │ ├── cpctbin2sna.layout │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── mem_imgs.cpp │ │ ├── downgrademap.bas │ │ ├── ene2bin_mk1.bas │ │ ├── ene2h.bas │ │ ├── fbpng.bi │ │ ├── flipenems.bas │ │ ├── flipmap.bas │ │ ├── h2ene.bas │ │ ├── h2map.bas │ │ ├── imanol.bas │ │ ├── libfbpng.a │ │ ├── librarian2.bas │ │ ├── mapcnv.bas │ │ ├── mapcnv.exe │ │ ├── mapcnvbin.bas │ │ ├── mkts_om.bas │ │ ├── msc3_mk1.bas │ │ ├── mtparser.bas │ │ ├── mtparser.bi │ │ ├── png2scr.bas │ │ ├── printsize.bas │ │ ├── reordenator.bas │ │ ├── rle53map_sp.bas │ │ ├── rle62map_sp.bas │ │ ├── tmmaped.bas │ │ ├── tmxcnv-devCpp.7z │ │ ├── wyzTrackerParser.bas │ │ └── zx7 │ │ │ ├── Makefile.win │ │ │ ├── compress.c │ │ │ ├── demo.asm │ │ │ ├── dzx7_mega.asm │ │ │ ├── dzx7_standard.asm │ │ │ ├── dzx7_turbo.asm │ │ │ ├── optimize.c │ │ │ ├── zx7.c │ │ │ ├── zx7.dev │ │ │ ├── zx7.h │ │ │ ├── zx7.layout │ │ │ └── zx7.txt │ │ ├── textstuffer.exe │ │ ├── tmmaped.exe │ │ ├── tmxcnv.exe │ │ ├── wyzTrackerParser.exe │ │ ├── zlib1.dll │ │ ├── zx0.exe │ │ └── zx7.exe ├── jetpaco │ ├── bin │ │ ├── cuts.bin │ │ ├── cutsc.bin │ │ ├── ending.bin │ │ ├── endingc.bin │ │ ├── font.bin │ │ ├── jet_paco.c.bin │ │ ├── list.txt │ │ ├── loader.bin │ │ ├── loading.bin │ │ ├── loading.c.bin │ │ ├── marco.bin │ │ ├── marcoc.bin │ │ ├── preloader.bin │ │ ├── sprites.bin │ │ ├── sprites_bullet.bin │ │ ├── sprites_extra.bin │ │ ├── sprites_humo.bin │ │ ├── title.bin │ │ ├── titlec.bin │ │ └── work.bin │ ├── dev │ │ ├── 128k.h │ │ ├── aplib.h │ │ ├── assets │ │ │ ├── ay_fx_numbers.h │ │ │ ├── cpc_TrPixLutM0.asm │ │ │ ├── cpc_TrPixLutM1.asm │ │ │ ├── enems.h │ │ │ ├── extrasprites.h │ │ │ ├── levels.h │ │ │ ├── mapa.h │ │ │ ├── pal.h │ │ │ ├── pal1.h │ │ │ ├── pal2.h │ │ │ ├── pal_ending.h │ │ │ ├── sprites-empty.h │ │ │ ├── sprites.h │ │ │ ├── spriteset_mappings.h │ │ │ ├── tileset.h │ │ │ ├── trpixlut.bin │ │ │ ├── trpixlut.h │ │ │ └── trpixlutc.bin │ │ ├── autodefs.h │ │ ├── compile.bat │ │ ├── crt.asm │ │ ├── definitions.h │ │ ├── engine.h │ │ ├── engine │ │ │ ├── breakable.h │ │ │ ├── bullets.h │ │ │ ├── c_levels.h │ │ │ ├── enem_mods │ │ │ │ ├── enem_type_fanties.h │ │ │ │ ├── enem_type_lineal.h │ │ │ │ ├── enem_type_orthoshooters.h │ │ │ │ ├── enem_type_pursuers.h │ │ │ │ └── enem_type_pursuers_asm.h │ │ │ ├── enengine.h │ │ │ ├── general.h │ │ │ ├── hotspots.h │ │ │ ├── player.h │ │ │ ├── simple_cocos.h │ │ │ └── update.h │ │ ├── jet_paco.bin │ │ ├── jet_paco.cdt │ │ ├── jet_paco.map │ │ ├── jet_paco.sna │ │ ├── loader │ │ │ ├── loadercpc-old.asm-orig │ │ │ ├── loadercpc.asm │ │ │ ├── loadercpc.asm-orig │ │ │ ├── preloadercpc.asm │ │ │ └── preloadercpc.asm-orig │ │ ├── mainloop.h │ │ ├── mainloop │ │ │ ├── flick_screen.h │ │ │ ├── game_loop.h │ │ │ └── hud.h │ │ ├── mk1.c │ │ ├── mtasmlib.h │ │ ├── my │ │ │ ├── ci │ │ │ │ ├── after_game.h │ │ │ │ ├── after_game_loop.h │ │ │ │ ├── after_game_over.h │ │ │ │ ├── after_load.h │ │ │ │ ├── before_entering_screen.h │ │ │ │ ├── before_game.h │ │ │ │ ├── bg_collision │ │ │ │ │ ├── obstacle_down.h │ │ │ │ │ ├── obstacle_left.h │ │ │ │ │ ├── obstacle_right.h │ │ │ │ │ └── obstacle_up.h │ │ │ │ ├── custom_enems_player_collision.h │ │ │ │ ├── custom_evil_tile_check.h │ │ │ │ ├── custom_heng.h │ │ │ │ ├── custom_lock_clear.h │ │ │ │ ├── custom_veng.h │ │ │ │ ├── enems_before_move.h │ │ │ │ ├── enems_custom_respawn.h │ │ │ │ ├── enems_extra_actions.h │ │ │ │ ├── enems_extra_mods.h │ │ │ │ ├── enems_load.h │ │ │ │ ├── enems_move.h │ │ │ │ ├── entering_game.h │ │ │ │ ├── entering_screen.h │ │ │ │ ├── extra_functions.h │ │ │ │ ├── extra_routines.h │ │ │ │ ├── extra_vars.h │ │ │ │ ├── hotspot_setup_t_modification.h │ │ │ │ ├── hotspots_custom.h │ │ │ │ ├── map_renderer_t_modification.h │ │ │ │ ├── on_controller_pressed │ │ │ │ │ ├── down.h │ │ │ │ │ ├── fire.h │ │ │ │ │ ├── left.h │ │ │ │ │ ├── right.h │ │ │ │ │ └── up.h │ │ │ │ ├── on_enems_collision.h │ │ │ │ ├── on_enems_killed.h │ │ │ │ ├── on_jetpac_boost.h │ │ │ │ ├── on_map_tile_decoded.h │ │ │ │ ├── on_player_fires.h │ │ │ │ ├── on_player_killed.h │ │ │ │ ├── on_player_respawned.h │ │ │ │ ├── on_special_tile.h │ │ │ │ ├── on_tile_pushed.h │ │ │ │ ├── on_unlocked_bolt.h │ │ │ │ ├── on_wall_broken.h │ │ │ │ ├── on_wall_hit.h │ │ │ │ └── player_center_checks.h │ │ │ ├── config.h │ │ │ ├── custom_animation.h │ │ │ ├── extern.h │ │ │ ├── fixed_screens.h │ │ │ ├── level_screen.h │ │ │ ├── levelset.h │ │ │ ├── map_custom_decoder.h │ │ │ ├── msc-config.h │ │ │ ├── msc.h │ │ │ ├── title_screen.h │ │ │ └── wyz │ │ │ │ ├── efectos.h │ │ │ │ ├── instrumentos.h │ │ │ │ └── songs.h │ │ ├── pantallas.h │ │ ├── plugins │ │ │ ├── plugin_chac_chacs.h │ │ │ └── plugin_linear_platformers.h │ │ ├── printer.h │ │ ├── prototypes.h │ │ ├── savegame.h │ │ ├── scripts.bin │ │ ├── setenv.bat │ │ ├── setenv.ps1 │ │ ├── tilanim.h │ │ ├── tilemap_conf.asm │ │ ├── wyz_player.h │ │ └── zx0.h │ ├── diario.md │ ├── enems │ │ ├── enems.ene │ │ ├── leeme.txt │ │ ├── mapa.MAP │ │ ├── ponedor.bat │ │ ├── upd.bat │ │ └── work.png │ ├── gfx │ │ ├── cpc_pal.png │ │ ├── cuts.png │ │ ├── ending-orig.png │ │ ├── ending.png │ │ ├── font.png │ │ ├── loading.png │ │ ├── mappy0.png │ │ ├── mappy1.png │ │ ├── mappy2.png │ │ ├── marco.png │ │ ├── pal.png │ │ ├── pal1.png │ │ ├── pal2.png │ │ ├── pal_ending.png │ │ ├── pal_loading.png │ │ ├── puri.png │ │ ├── sprites.png │ │ ├── sprites_bullet.png │ │ ├── sprites_extra.png │ │ ├── sprites_humo.png │ │ ├── title.png │ │ ├── title.scr │ │ ├── work.png │ │ └── work2_test.png │ ├── map │ │ ├── mapa.MAP │ │ └── mapa.fmp │ ├── mus │ │ ├── 00_title.mus │ │ ├── 00_title.mus.bin │ │ ├── 01_ingamea.mus │ │ ├── 01_ingamea.mus.bin │ │ ├── 02_gover.mus │ │ ├── 02_gover.mus.bin │ │ ├── 03_ending.mus │ │ ├── 03_ending.mus.bin │ │ ├── 04_sclear.mus │ │ ├── 04_sclear.mus.bin │ │ ├── 05_ingameb.mus │ │ ├── 05_ingameb.mus.bin │ │ ├── 06_ingamec.mus │ │ ├── 06_ingamec.mus.bin │ │ ├── compress_songs.bat │ │ ├── efectos.asm │ │ ├── instrumentos.asm │ │ └── orig │ │ │ ├── 02 - Jet Paco - Ingame_A_02.wyz │ │ │ ├── 03 - Jet Paco - Ingame_B_01.wyz │ │ │ ├── 04 - Jet Paco - Ingame_C_01.wyz │ │ │ ├── ending.mus │ │ │ ├── gover.mus │ │ │ ├── ingamea.mus │ │ │ ├── ingameb.mus │ │ │ ├── ingamec.mus │ │ │ ├── instrumentos.asm │ │ │ ├── sclear.mus │ │ │ └── title.mus │ ├── script │ │ ├── dogmole.spt │ │ ├── motor-de-clausulas.txt │ │ ├── msc-config.h │ │ ├── msc.h │ │ ├── scripts.bin │ │ └── test.spt │ ├── show │ │ ├── jet_paco-20220726.cdt │ │ ├── jet_paco-20220726.sna │ │ ├── jet_paco-20220727a.cdt │ │ ├── jet_paco-20220727a.sna │ │ ├── jet_paco-20220809.cdt │ │ ├── jet_paco-20220809.sna │ │ ├── jet_paco-20220905b.cdt │ │ ├── jet_paco-20220905b.sna │ │ ├── jet_paco-20221119a.cdt │ │ ├── jet_paco-20221119a.sna │ │ ├── jet_paco-20221120a.cdt │ │ ├── jet_paco-20221120a.sna │ │ ├── jet_paco-20221126a.cdt │ │ ├── jet_paco-20221126a.sna │ │ ├── jet_paco-20221206a.cdt │ │ ├── jet_paco-20221206a.sna │ │ ├── jet_paco-20221206b.cdt │ │ ├── jet_paco-20221206b.sna │ │ ├── jet_paco-20230106a.cdt │ │ ├── jet_paco-20230106a.sna │ │ ├── jet_paco-20230123a.cdt │ │ ├── jet_paco-20230123a.sna │ │ ├── jet_paco-20230123b.cdt │ │ ├── jet_paco-20230123b.sna │ │ ├── jet_paco-20230123c.cdt │ │ ├── jet_paco-20230123c.sna │ │ ├── jet_paco-20230220--RC1.cdt │ │ └── jet_paco-20230220--RC1.sna │ └── trash │ │ ├── cmdlineparser.bas │ │ ├── cmdlineparser.bi │ │ ├── enems.ene │ │ ├── enems0.ene │ │ ├── enems1.ene │ │ ├── enems_jetpaco_l1_c64.ene │ │ ├── enems_jetpaco_l1_cpc.ene │ │ ├── enems_jetpaco_l2_c64.ene │ │ ├── enems_jetpaco_l2_cpc.ene │ │ ├── enshrinkerC64toCPC.bas │ │ ├── enshrinkerC64toCPC.exe │ │ ├── jetpaco_c64_level1.map │ │ ├── jetpaco_c64_level2.map │ │ ├── jetpaco_cpc_level1.fmp │ │ ├── jetpaco_cpc_level1.map │ │ ├── jetpaco_cpc_level2.map │ │ ├── mapa.map │ │ ├── mapa0.MAP │ │ ├── mapa1.map │ │ ├── mapsrinkerC64toCPC.bas │ │ ├── mapsrinkerC64toCPC.exe │ │ ├── mtparser.bas │ │ ├── mtparser.bi │ │ ├── pasteene.bas │ │ └── pasteene.exe └── lala+lah │ ├── bin │ ├── ending.bin │ ├── endingc.bin │ ├── font.bin │ ├── lala.c.bin │ ├── lala_beta.c.bin │ ├── list.txt │ ├── loader.bin │ ├── loading.bin │ ├── loading.c.bin │ ├── marco.bin │ ├── marcoc.bin │ ├── preloader.bin │ ├── sprites.bin │ ├── sprites_bullet.bin │ ├── sprites_extra.bin │ ├── title.bin │ ├── titlec.bin │ └── work.bin │ ├── dev │ ├── 128k.h │ ├── aplib.h │ ├── assets │ │ ├── ay_fx_numbers.h │ │ ├── cpc_TrPixLutM0.asm │ │ ├── cpc_TrPixLutM1.asm │ │ ├── enems.h │ │ ├── extrasprites.h │ │ ├── levels.h │ │ ├── mapa.h │ │ ├── pal.h │ │ ├── pal1.h │ │ ├── sprites-empty.h │ │ ├── sprites.h │ │ ├── spriteset_mappings.h │ │ ├── tileset.h │ │ ├── trpixlut.bin │ │ ├── trpixlut.h │ │ └── trpixlutc.bin │ ├── autodefs.h │ ├── compile.bat │ ├── crt.asm │ ├── definitions.h │ ├── engine.h │ ├── engine │ │ ├── breakable.h │ │ ├── bullets.h │ │ ├── c_levels.h │ │ ├── enem_mods │ │ │ ├── enem_type_fanties.h │ │ │ ├── enem_type_lineal.h │ │ │ ├── enem_type_orthoshooters.h │ │ │ ├── enem_type_pursuers.h │ │ │ └── enem_type_pursuers_asm.h │ │ ├── enengine.h │ │ ├── general.h │ │ ├── hotspots.h │ │ ├── player.h │ │ ├── simple_cocos.h │ │ └── update.h │ ├── lala.bin │ ├── lala.cdt │ ├── lala.map │ ├── lala.sna │ ├── loader │ │ ├── loadercpc-old.asm-orig │ │ ├── loadercpc.asm │ │ ├── loadercpc.asm-orig │ │ ├── preloadercpc.asm │ │ └── preloadercpc.asm-orig │ ├── mainloop.h │ ├── mainloop │ │ ├── flick_screen.h │ │ ├── game_loop.h │ │ └── hud.h │ ├── mk1.c │ ├── mtasmlib.h │ ├── my │ │ ├── ci │ │ │ ├── after_game.h │ │ │ ├── after_game_loop.h │ │ │ ├── after_game_over.h │ │ │ ├── after_load.h │ │ │ ├── before_entering_screen.h │ │ │ ├── before_game.h │ │ │ ├── bg_collision │ │ │ │ ├── obstacle_down.h │ │ │ │ ├── obstacle_left.h │ │ │ │ ├── obstacle_right.h │ │ │ │ └── obstacle_up.h │ │ │ ├── custom_enems_player_collision.h │ │ │ ├── custom_evil_tile_check.h │ │ │ ├── custom_heng.h │ │ │ ├── custom_lock_clear.h │ │ │ ├── custom_veng.h │ │ │ ├── enems_before_move.h │ │ │ ├── enems_custom_respawn.h │ │ │ ├── enems_extra_actions.h │ │ │ ├── enems_extra_mods.h │ │ │ ├── enems_load.h │ │ │ ├── enems_move.h │ │ │ ├── entering_game.h │ │ │ ├── entering_screen.h │ │ │ ├── extra_functions.h │ │ │ ├── extra_routines.h │ │ │ ├── extra_vars.h │ │ │ ├── hotspot_setup_t_modification.h │ │ │ ├── hotspots_custom.h │ │ │ ├── map_renderer_t_modification.h │ │ │ ├── on_enems_collision.h │ │ │ ├── on_enems_killed.h │ │ │ ├── on_jetpac_boost.h │ │ │ ├── on_map_tile_decoded.h │ │ │ ├── on_player_fires.h │ │ │ ├── on_player_killed.h │ │ │ ├── on_player_respawned.h │ │ │ ├── on_special_tile.h │ │ │ ├── on_tile_pushed.h │ │ │ ├── on_unlocked_bolt.h │ │ │ ├── on_wall_broken.h │ │ │ └── on_wall_hit.h │ │ ├── config.h │ │ ├── custom_animation.h │ │ ├── extern.h │ │ ├── fixed_screens.h │ │ ├── level_screen.h │ │ ├── levelset.h │ │ ├── map_custom_decoder.h │ │ ├── msc-config.h │ │ ├── msc.h │ │ ├── title_screen.h │ │ └── wyz │ │ │ ├── efectos.h │ │ │ ├── instrumentos.h │ │ │ └── songs.h │ ├── pantallas.h │ ├── plugins │ │ └── plugin_linear_platformers.h │ ├── printer.h │ ├── prototypes.h │ ├── savegame.h │ ├── scripts.bin │ ├── setenv.bat │ ├── setenv.ps1 │ ├── tilanim.h │ ├── tilemap_conf.asm │ └── wyz_player.h │ ├── diario.md │ ├── enems │ ├── boh.MAP │ ├── enems.ene │ ├── enems0.ene │ ├── enems1.ene │ ├── leeme.txt │ ├── mapa.MAP │ ├── ponedor.bat │ └── work.png │ ├── gfx │ ├── cpc_pal.png │ ├── ct.act │ ├── ending.png │ ├── font.png │ ├── loading.png │ ├── mappy.png │ ├── marco.png │ ├── pal.png │ ├── pal1.png │ ├── pal_loading.png │ ├── sprites.png │ ├── sprites_bullet.png │ ├── sprites_extra.png │ ├── title.png │ ├── title.scr │ └── work.png │ ├── levels │ ├── behs.txt │ ├── extrasprites.asm │ ├── font.png │ └── makelevels.bat │ ├── map │ ├── mapa.MAP │ └── mapa.fmp │ ├── mus │ ├── 00_title.mus │ ├── 00_title.mus.bin │ ├── 01_ingame.mus │ ├── 01_ingame.mus.asm │ ├── 01_ingame.mus.bin │ ├── compress_songs.bat │ ├── efectos.asm │ ├── instrumentos.asm │ └── wyz │ │ ├── 00_title.wyz │ │ └── 01_ingame.wyz │ ├── script │ ├── dogmole.spt │ ├── motor-de-clausulas.txt │ ├── msc-config.h │ ├── msc.h │ ├── scripts.bin │ └── test.spt │ ├── show │ ├── lala--20220710a.cdt │ └── lala--20220710a.sna │ └── trash │ ├── enems.ene │ ├── enems0.ene │ ├── enems1.ene │ ├── mapa.map │ ├── mapa0.MAP │ ├── mapa1.MAP │ ├── pasteene.bas │ └── pasteene.exe ├── src ├── bin │ ├── ending.bin │ ├── endingc.bin │ ├── font.bin │ ├── lala_beta.c.bin │ ├── list.txt │ ├── loader.bin │ ├── loading.bin │ ├── loading.c.bin │ ├── marco.bin │ ├── marcoc.bin │ ├── preloader.bin │ ├── sprites.bin │ ├── sprites_bullet.bin │ ├── sprites_extra.bin │ ├── title.bin │ ├── titlec.bin │ └── work.bin ├── dev │ ├── 128k.h │ ├── aplib.h │ ├── assets │ │ ├── ay_fx_numbers.h │ │ ├── cpc_TrPixLutM0.asm │ │ ├── cpc_TrPixLutM1.asm │ │ ├── enems.h │ │ ├── extrasprites.h │ │ ├── levels.h │ │ ├── mapa.h │ │ ├── pal.h │ │ ├── sprites-empty.h │ │ ├── sprites.h │ │ ├── spriteset_mappings.h │ │ ├── tileset.h │ │ ├── trpixlut.bin │ │ ├── trpixlut.h │ │ └── trpixlutc.bin │ ├── autodefs.h │ ├── compile.bat │ ├── crt.asm │ ├── definitions.h │ ├── engine.h │ ├── engine │ │ ├── breakable.h │ │ ├── bullets.h │ │ ├── c_levels.h │ │ ├── enem_mods │ │ │ ├── enem_type_fanties.h │ │ │ ├── enem_type_lineal.h │ │ │ ├── enem_type_orthoshooters.h │ │ │ ├── enem_type_pursuers.h │ │ │ └── enem_type_pursuers_asm.h │ │ ├── enengine.h │ │ ├── general.h │ │ ├── hotspots.h │ │ ├── player.h │ │ ├── simple_cocos.h │ │ └── update.h │ ├── lala_beta.bin │ ├── lala_beta.cdt │ ├── lala_beta.map │ ├── lala_beta.sna │ ├── loader │ │ ├── loadercpc-old.asm-orig │ │ ├── loadercpc.asm │ │ ├── loadercpc.asm-orig │ │ ├── preloadercpc.asm │ │ └── preloadercpc.asm-orig │ ├── mainloop.h │ ├── mainloop │ │ ├── flick_screen.h │ │ ├── game_loop.h │ │ └── hud.h │ ├── mk1.c │ ├── mtasmlib.h │ ├── my │ │ ├── ci │ │ │ ├── after_game.h │ │ │ ├── after_game_loop.h │ │ │ ├── after_game_over.h │ │ │ ├── after_load.h │ │ │ ├── before_entering_screen.h │ │ │ ├── before_game.h │ │ │ ├── bg_collision │ │ │ │ ├── obstacle_down.h │ │ │ │ ├── obstacle_left.h │ │ │ │ ├── obstacle_right.h │ │ │ │ └── obstacle_up.h │ │ │ ├── custom_enems_player_collision.h │ │ │ ├── custom_evil_tile_check.h │ │ │ ├── custom_heng.h │ │ │ ├── custom_lock_clear.h │ │ │ ├── custom_veng.h │ │ │ ├── enems_before_move.h │ │ │ ├── enems_custom_respawn.h │ │ │ ├── enems_extra_actions.h │ │ │ ├── enems_extra_mods.h │ │ │ ├── enems_load.h │ │ │ ├── enems_move.h │ │ │ ├── entering_game.h │ │ │ ├── entering_screen.h │ │ │ ├── extra_functions.h │ │ │ ├── extra_routines.h │ │ │ ├── extra_vars.h │ │ │ ├── hotspot_setup_t_modification.h │ │ │ ├── hotspots_custom.h │ │ │ ├── map_renderer_t_modification.h │ │ │ ├── on_controller_pressed │ │ │ │ ├── down.h │ │ │ │ ├── fire.h │ │ │ │ ├── left.h │ │ │ │ ├── right.h │ │ │ │ └── up.h │ │ │ ├── on_enems_collision.h │ │ │ ├── on_enems_killed.h │ │ │ ├── on_jetpac_boost.h │ │ │ ├── on_map_tile_decoded.h │ │ │ ├── on_player_fires.h │ │ │ ├── on_player_killed.h │ │ │ ├── on_player_respawned.h │ │ │ ├── on_special_tile.h │ │ │ ├── on_tile_pushed.h │ │ │ ├── on_unlocked_bolt.h │ │ │ ├── on_wall_broken.h │ │ │ ├── on_wall_hit.h │ │ │ └── player_center_checks.h │ │ ├── config.h │ │ ├── custom_animation.h │ │ ├── extern.h │ │ ├── fixed_screens.h │ │ ├── level_screen.h │ │ ├── levelset.h │ │ ├── map_custom_decoder.h │ │ ├── msc-config.h │ │ ├── msc.h │ │ ├── title_screen.h │ │ └── wyz │ │ │ ├── efectos.h │ │ │ ├── instrumentos.h │ │ │ └── songs.h │ ├── pantallas.h │ ├── plugins │ │ ├── plugin_chac_chacs.h │ │ ├── plugin_linear_platformers.h │ │ └── plugin_textbox.h │ ├── printer.h │ ├── prototypes.h │ ├── savegame.h │ ├── scripts.bin │ ├── setenv.bat │ ├── setenv.ps1 │ ├── tilanim.h │ ├── tilemap_conf.asm │ ├── wyz_player.h │ └── zx0.h ├── enems │ ├── boh.MAP │ ├── enems.ene │ ├── leeme.txt │ ├── mapa.MAP │ ├── ponedor.bat │ └── work.png ├── gfx │ ├── cpc_pal.png │ ├── ct.act │ ├── ending.png │ ├── font.png │ ├── loading.png │ ├── marco.png │ ├── mode1 │ │ ├── cpc_pal.png │ │ ├── ending.png │ │ ├── font.png │ │ ├── loading.png │ │ ├── marco.png │ │ ├── pal.png │ │ ├── pal_loading.png │ │ ├── sprites.png │ │ ├── sprites_bullet.png │ │ ├── sprites_extra.png │ │ ├── title.png │ │ └── work.png │ ├── pal.png │ ├── pal_loading.png │ ├── sprites.png │ ├── sprites_bullet.png │ ├── sprites_extra.png │ ├── title.png │ ├── title.scr │ └── work.png ├── levels │ ├── behs.txt │ ├── extrasprites.asm │ ├── font.png │ └── makelevels.bat ├── map │ ├── mapa.MAP │ └── mapa.fmp ├── mus │ ├── 00_title.mus │ ├── 00_title.mus.bin │ ├── 01_ingame.mus │ ├── 01_ingame.mus.asm │ ├── 01_ingame.mus.bin │ ├── compress_songs.bat │ ├── efectos.asm │ ├── instrumentos.asm │ └── wyz │ │ ├── 00_title.wyz │ │ └── 01_ingame.wyz ├── script │ ├── dogmole.spt │ ├── motor-de-clausulas.txt │ ├── msc-config.h │ ├── msc.h │ ├── scripts.bin │ └── test.spt ├── show │ ├── lala--20220110a.cdt │ ├── lala--20220110a.sna │ ├── lala--20220111a.cdt │ └── lala--20220111a.sna ├── spare │ ├── CPC_27_ colours.act │ ├── WYZPROPLAY47c_CPC.ASM │ ├── WYZProPlay47cCPC.ASM │ ├── compile_128k_sample.bat │ ├── easymenu.h │ ├── extern-textos.h │ ├── intro.h │ └── loader.bas ├── trash │ ├── mkcdt.bat │ ├── placeholder │ └── test.cdt └── utils │ ├── 2cdt.exe │ ├── 2cdt.txt │ ├── AKSToBIN.exe │ ├── GenTape.exe │ ├── WyzFx2Asm.exe │ ├── apack.exe │ ├── apultra.exe │ ├── asm2z88dk.exe │ ├── bas2tap.exe │ ├── behs2bin.exe │ ├── bin2tap.exe │ ├── buildlevels_MK1.exe │ ├── chr2bin.exe │ ├── cpc2cdt.exe │ ├── cpctbin2sna.exe │ ├── downgrademap.exe │ ├── ene2bin_mk1.exe │ ├── ene2h.exe │ ├── flipenems.exe │ ├── flipmap.exe │ ├── h2ene.exe │ ├── h2map.exe │ ├── imanol.exe │ ├── librarian2.exe │ ├── mapcnv.exe │ ├── mapcnvbin.exe │ ├── mkts_om.exe │ ├── msc3_mk1.exe │ ├── pasmo-README.txt │ ├── pasmo.exe │ ├── png2scr.exe │ ├── ponedor.exe │ ├── printsize.exe │ ├── reordenator.exe │ ├── rle53map_sp.exe │ ├── rle62map_sp.exe │ ├── src │ ├── apultra-devCpp.7z │ ├── asm2z88dk.bas │ ├── behs2bin.bas │ ├── buildlevels_MK1.bas │ ├── chars2work.bas │ ├── chr2bin.bas │ ├── cmdlineparser.bas │ ├── cmdlineparser.bi │ ├── cpc2cdt │ │ ├── Makefile │ │ ├── Makefile.win │ │ ├── cpc2cdt.dev │ │ ├── cpc2cdt.layout │ │ └── src │ │ │ ├── cpc2cdt.c │ │ │ ├── tinytape.c │ │ │ └── tinytape.h │ ├── cpctbin2sna │ │ ├── Makefile.win │ │ ├── cpctbin2sna.dev │ │ ├── cpctbin2sna.layout │ │ ├── main.cpp │ │ ├── main.h │ │ └── mem_imgs.cpp │ ├── downgrademap.bas │ ├── ene2bin_mk1.bas │ ├── ene2h.bas │ ├── fbpng.bi │ ├── flipenems.bas │ ├── flipmap.bas │ ├── h2ene.bas │ ├── h2map.bas │ ├── imanol.bas │ ├── libfbpng.a │ ├── librarian2.bas │ ├── mapcnv.bas │ ├── mapcnv.exe │ ├── mapcnvbin.bas │ ├── mkts_om.bas │ ├── msc3_mk1.bas │ ├── mtparser.bas │ ├── mtparser.bi │ ├── png2scr.bas │ ├── printsize.bas │ ├── reordenator.bas │ ├── rle53map_sp.bas │ ├── rle62map_sp.bas │ ├── tmmaped.bas │ ├── tmxcnv-devCpp.7z │ ├── wyzTrackerParser.bas │ └── zx7 │ │ ├── Makefile.win │ │ ├── compress.c │ │ ├── demo.asm │ │ ├── dzx7_mega.asm │ │ ├── dzx7_standard.asm │ │ ├── dzx7_turbo.asm │ │ ├── optimize.c │ │ ├── zx7.c │ │ ├── zx7.dev │ │ ├── zx7.h │ │ ├── zx7.layout │ │ └── zx7.txt │ ├── tmxcnv.exe │ ├── wyzTrackerParser.exe │ ├── zlib1.dll │ ├── zx0.exe │ └── zx7.exe └── wip.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | desktop.ini 2 | *.sublime* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/README.md -------------------------------------------------------------------------------- /diario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/diario.md -------------------------------------------------------------------------------- /docs/config.h.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/config.h.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/tutorial-cap01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/tutorial-cap01.md -------------------------------------------------------------------------------- /docs/tutorial-cap02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/tutorial-cap02.md -------------------------------------------------------------------------------- /docs/wiki-img/01_dogmole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/01_dogmole.jpg -------------------------------------------------------------------------------- /docs/wiki-img/01_lala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/01_lala.jpg -------------------------------------------------------------------------------- /docs/wiki-img/01_lala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/01_lala.png -------------------------------------------------------------------------------- /docs/wiki-img/01_meemaid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/01_meemaid.jpg -------------------------------------------------------------------------------- /docs/wiki-img/01_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/01_mono.png -------------------------------------------------------------------------------- /docs/wiki-img/01_seto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/01_seto.png -------------------------------------------------------------------------------- /docs/wiki-img/02_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_console.png -------------------------------------------------------------------------------- /docs/wiki-img/02_empty_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_empty_ts.png -------------------------------------------------------------------------------- /docs/wiki-img/02_lah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_lah.png -------------------------------------------------------------------------------- /docs/wiki-img/02_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_palette.png -------------------------------------------------------------------------------- /docs/wiki-img/02_perils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_perils.png -------------------------------------------------------------------------------- /docs/wiki-img/02_ps_wip.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_ps_wip.PNG -------------------------------------------------------------------------------- /docs/wiki-img/02_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_tiles.png -------------------------------------------------------------------------------- /docs/wiki-img/02_tileset_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_tileset_16.png -------------------------------------------------------------------------------- /docs/wiki-img/02_ts_d'veel'ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_ts_d'veel'ng.png -------------------------------------------------------------------------------- /docs/wiki-img/02_ts_lah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_ts_lah.png -------------------------------------------------------------------------------- /docs/wiki-img/02_ts_monono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_ts_monono.png -------------------------------------------------------------------------------- /docs/wiki-img/02_ts_perils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_ts_perils.png -------------------------------------------------------------------------------- /docs/wiki-img/02_ts_zcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/02_ts_zcp.png -------------------------------------------------------------------------------- /docs/wiki-img/07_colision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/07_colision.png -------------------------------------------------------------------------------- /docs/wiki-img/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/cpc_pal.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/ending.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/font.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/hex_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/hex_1.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/hex_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/hex_2.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/loading.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/marco.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/sprites.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/title.png -------------------------------------------------------------------------------- /docs/wiki-img/jet_paco/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/docs/wiki-img/jet_paco/work.png -------------------------------------------------------------------------------- /env/XVI32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/env/XVI32.zip -------------------------------------------------------------------------------- /env/cpc_pal.aco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/env/cpc_pal.aco -------------------------------------------------------------------------------- /env/cpc_pal.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/env/cpc_pal.act -------------------------------------------------------------------------------- /env/cpc_pal.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/env/cpc_pal.pal -------------------------------------------------------------------------------- /env/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/env/cpc_pal.png -------------------------------------------------------------------------------- /env/mappy-mojon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/env/mappy-mojon.zip -------------------------------------------------------------------------------- /env/z88dk_mt.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/env/z88dk_mt.7z -------------------------------------------------------------------------------- /examples/dogmole/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/dogmole/dev -------------------------------------------------------------------------------- /examples/dogmole/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/dogmole/gfx/work.png -------------------------------------------------------------------------------- /examples/lalalah/bin/ending.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/ending.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/endingc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/endingc.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/font.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/list.txt -------------------------------------------------------------------------------- /examples/lalalah/bin/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/loader.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/loading.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/loading.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/loading.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/loading.c.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/marco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/marco.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/marcoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/marcoc.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/preloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/preloader.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/sprites.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/sprites.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/title.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/title.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/titlec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/titlec.bin -------------------------------------------------------------------------------- /examples/lalalah/bin/work.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/bin/work.bin -------------------------------------------------------------------------------- /examples/lalalah/dev/128k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/128k.h -------------------------------------------------------------------------------- /examples/lalalah/dev/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/aplib.h -------------------------------------------------------------------------------- /examples/lalalah/dev/assets/mapa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/assets/mapa.h -------------------------------------------------------------------------------- /examples/lalalah/dev/assets/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/assets/pal.h -------------------------------------------------------------------------------- /examples/lalalah/dev/autodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/autodefs.h -------------------------------------------------------------------------------- /examples/lalalah/dev/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/compile.bat -------------------------------------------------------------------------------- /examples/lalalah/dev/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/crt.asm -------------------------------------------------------------------------------- /examples/lalalah/dev/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/definitions.h -------------------------------------------------------------------------------- /examples/lalalah/dev/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/engine.h -------------------------------------------------------------------------------- /examples/lalalah/dev/lala_lah.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/lala_lah.bin -------------------------------------------------------------------------------- /examples/lalalah/dev/lala_lah.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/lala_lah.cdt -------------------------------------------------------------------------------- /examples/lalalah/dev/lala_lah.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/lala_lah.map -------------------------------------------------------------------------------- /examples/lalalah/dev/lala_lah.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/lala_lah.sna -------------------------------------------------------------------------------- /examples/lalalah/dev/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/mainloop.h -------------------------------------------------------------------------------- /examples/lalalah/dev/mk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/mk1.c -------------------------------------------------------------------------------- /examples/lalalah/dev/mtasmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/mtasmlib.h -------------------------------------------------------------------------------- /examples/lalalah/dev/my/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/my/config.h -------------------------------------------------------------------------------- /examples/lalalah/dev/my/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/my/extern.h -------------------------------------------------------------------------------- /examples/lalalah/dev/my/levelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/my/levelset.h -------------------------------------------------------------------------------- /examples/lalalah/dev/my/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/my/msc.h -------------------------------------------------------------------------------- /examples/lalalah/dev/pantallas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/pantallas.h -------------------------------------------------------------------------------- /examples/lalalah/dev/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/printer.h -------------------------------------------------------------------------------- /examples/lalalah/dev/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/prototypes.h -------------------------------------------------------------------------------- /examples/lalalah/dev/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/savegame.h -------------------------------------------------------------------------------- /examples/lalalah/dev/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/lalalah/dev/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/setenv.bat -------------------------------------------------------------------------------- /examples/lalalah/dev/setenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/setenv.ps1 -------------------------------------------------------------------------------- /examples/lalalah/dev/tilanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/tilanim.h -------------------------------------------------------------------------------- /examples/lalalah/dev/wyz_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/dev/wyz_player.h -------------------------------------------------------------------------------- /examples/lalalah/enems/enems.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/enems/enems.ene -------------------------------------------------------------------------------- /examples/lalalah/enems/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/enems/mapa.MAP -------------------------------------------------------------------------------- /examples/lalalah/enems/ponedor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/enems/ponedor.bat -------------------------------------------------------------------------------- /examples/lalalah/enems/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/enems/work.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/cpc_pal.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/ct.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/ct.act -------------------------------------------------------------------------------- /examples/lalalah/gfx/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/ending.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/font.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/loading.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/marco.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/mode1/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/mode1/pal.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/pal.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/sprites.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/title.png -------------------------------------------------------------------------------- /examples/lalalah/gfx/title.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/title.scr -------------------------------------------------------------------------------- /examples/lalalah/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/gfx/work.png -------------------------------------------------------------------------------- /examples/lalalah/levels/behs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/levels/behs.txt -------------------------------------------------------------------------------- /examples/lalalah/levels/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/levels/font.png -------------------------------------------------------------------------------- /examples/lalalah/map/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/map/mapa.MAP -------------------------------------------------------------------------------- /examples/lalalah/map/mapa.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/map/mapa.fmp -------------------------------------------------------------------------------- /examples/lalalah/mus/00_title.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/mus/00_title.mus -------------------------------------------------------------------------------- /examples/lalalah/mus/01_ingame.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/mus/01_ingame.mus -------------------------------------------------------------------------------- /examples/lalalah/mus/efectos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/mus/efectos.asm -------------------------------------------------------------------------------- /examples/lalalah/script/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/script/msc.h -------------------------------------------------------------------------------- /examples/lalalah/script/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/lalalah/script/test.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/script/test.spt -------------------------------------------------------------------------------- /examples/lalalah/spare/easymenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/spare/easymenu.h -------------------------------------------------------------------------------- /examples/lalalah/spare/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/spare/intro.h -------------------------------------------------------------------------------- /examples/lalalah/spare/loader.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/spare/loader.bas -------------------------------------------------------------------------------- /examples/lalalah/trash/mkcdt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/trash/mkcdt.bat -------------------------------------------------------------------------------- /examples/lalalah/trash/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/lalalah/trash/test.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/lalalah/trash/test.cdt -------------------------------------------------------------------------------- /examples/perils/bin/ending.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/ending.bin -------------------------------------------------------------------------------- /examples/perils/bin/endingc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/endingc.bin -------------------------------------------------------------------------------- /examples/perils/bin/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/font.bin -------------------------------------------------------------------------------- /examples/perils/bin/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/list.txt -------------------------------------------------------------------------------- /examples/perils/bin/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/loader.bin -------------------------------------------------------------------------------- /examples/perils/bin/loading.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/loading.bin -------------------------------------------------------------------------------- /examples/perils/bin/loading.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/loading.c.bin -------------------------------------------------------------------------------- /examples/perils/bin/marco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/marco.bin -------------------------------------------------------------------------------- /examples/perils/bin/marcoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/marcoc.bin -------------------------------------------------------------------------------- /examples/perils/bin/perils.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/perils.c.bin -------------------------------------------------------------------------------- /examples/perils/bin/preloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/preloader.bin -------------------------------------------------------------------------------- /examples/perils/bin/sprites.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/sprites.bin -------------------------------------------------------------------------------- /examples/perils/bin/title.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/title.bin -------------------------------------------------------------------------------- /examples/perils/bin/titlec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/titlec.bin -------------------------------------------------------------------------------- /examples/perils/bin/work.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/bin/work.bin -------------------------------------------------------------------------------- /examples/perils/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/compile.bat -------------------------------------------------------------------------------- /examples/perils/dev/128k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/128k.h -------------------------------------------------------------------------------- /examples/perils/dev/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/aplib.h -------------------------------------------------------------------------------- /examples/perils/dev/assets/enems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/assets/enems.h -------------------------------------------------------------------------------- /examples/perils/dev/assets/mapa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/assets/mapa.h -------------------------------------------------------------------------------- /examples/perils/dev/assets/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/assets/pal.h -------------------------------------------------------------------------------- /examples/perils/dev/autodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/autodefs.h -------------------------------------------------------------------------------- /examples/perils/dev/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/compile.bat -------------------------------------------------------------------------------- /examples/perils/dev/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/crt.asm -------------------------------------------------------------------------------- /examples/perils/dev/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/definitions.h -------------------------------------------------------------------------------- /examples/perils/dev/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/engine.h -------------------------------------------------------------------------------- /examples/perils/dev/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/mainloop.h -------------------------------------------------------------------------------- /examples/perils/dev/mainloop/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/mainloop/hud.h -------------------------------------------------------------------------------- /examples/perils/dev/mk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/mk1.c -------------------------------------------------------------------------------- /examples/perils/dev/mk1.c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/mk1.c.asm -------------------------------------------------------------------------------- /examples/perils/dev/mtasmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/mtasmlib.h -------------------------------------------------------------------------------- /examples/perils/dev/my/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/my/config.h -------------------------------------------------------------------------------- /examples/perils/dev/my/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/my/extern.h -------------------------------------------------------------------------------- /examples/perils/dev/my/levelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/my/levelset.h -------------------------------------------------------------------------------- /examples/perils/dev/my/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/my/msc.h -------------------------------------------------------------------------------- /examples/perils/dev/my/wyz/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/my/wyz/songs.h -------------------------------------------------------------------------------- /examples/perils/dev/pantallas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/pantallas.h -------------------------------------------------------------------------------- /examples/perils/dev/perils.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/perils.asm -------------------------------------------------------------------------------- /examples/perils/dev/perils.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/perils.bin -------------------------------------------------------------------------------- /examples/perils/dev/perils.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/perils.cdt -------------------------------------------------------------------------------- /examples/perils/dev/perils.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/perils.map -------------------------------------------------------------------------------- /examples/perils/dev/perils.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/perils.sna -------------------------------------------------------------------------------- /examples/perils/dev/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/printer.h -------------------------------------------------------------------------------- /examples/perils/dev/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/prototypes.h -------------------------------------------------------------------------------- /examples/perils/dev/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/savegame.h -------------------------------------------------------------------------------- /examples/perils/dev/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/perils/dev/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/setenv.bat -------------------------------------------------------------------------------- /examples/perils/dev/setenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/setenv.ps1 -------------------------------------------------------------------------------- /examples/perils/dev/tilanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/tilanim.h -------------------------------------------------------------------------------- /examples/perils/dev/wyz_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/dev/wyz_player.h -------------------------------------------------------------------------------- /examples/perils/enems/boh.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/enems/boh.MAP -------------------------------------------------------------------------------- /examples/perils/enems/enems.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/enems/enems.ene -------------------------------------------------------------------------------- /examples/perils/enems/leeme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/enems/leeme.txt -------------------------------------------------------------------------------- /examples/perils/enems/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/enems/mapa.MAP -------------------------------------------------------------------------------- /examples/perils/enems/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/enems/work.png -------------------------------------------------------------------------------- /examples/perils/gfx/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/cpc_pal.png -------------------------------------------------------------------------------- /examples/perils/gfx/ct.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/ct.act -------------------------------------------------------------------------------- /examples/perils/gfx/cutse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/cutse.png -------------------------------------------------------------------------------- /examples/perils/gfx/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/ending.png -------------------------------------------------------------------------------- /examples/perils/gfx/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/font.png -------------------------------------------------------------------------------- /examples/perils/gfx/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/loading.png -------------------------------------------------------------------------------- /examples/perils/gfx/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/marco.png -------------------------------------------------------------------------------- /examples/perils/gfx/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/pal.png -------------------------------------------------------------------------------- /examples/perils/gfx/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/sprites.png -------------------------------------------------------------------------------- /examples/perils/gfx/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/title.png -------------------------------------------------------------------------------- /examples/perils/gfx/title.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/title.scr -------------------------------------------------------------------------------- /examples/perils/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/gfx/work.png -------------------------------------------------------------------------------- /examples/perils/levels/behs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/levels/behs.txt -------------------------------------------------------------------------------- /examples/perils/levels/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/levels/font.png -------------------------------------------------------------------------------- /examples/perils/map/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/map/mapa.MAP -------------------------------------------------------------------------------- /examples/perils/map/mapa.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/map/mapa.fmp -------------------------------------------------------------------------------- /examples/perils/mus/00_title.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/mus/00_title.mus -------------------------------------------------------------------------------- /examples/perils/mus/01_ingame.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/mus/01_ingame.mus -------------------------------------------------------------------------------- /examples/perils/mus/efectos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/mus/efectos.asm -------------------------------------------------------------------------------- /examples/perils/script/dogmole.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/script/dogmole.spt -------------------------------------------------------------------------------- /examples/perils/script/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/script/msc.h -------------------------------------------------------------------------------- /examples/perils/script/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/perils/script/test.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/script/test.spt -------------------------------------------------------------------------------- /examples/perils/spare/easymenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/spare/easymenu.h -------------------------------------------------------------------------------- /examples/perils/spare/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/spare/intro.h -------------------------------------------------------------------------------- /examples/perils/spare/loader.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/spare/loader.bas -------------------------------------------------------------------------------- /examples/perils/trash/mkcdt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/trash/mkcdt.bat -------------------------------------------------------------------------------- /examples/perils/trash/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/perils/trash/test.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/examples/perils/trash/test.cdt -------------------------------------------------------------------------------- /lib/cpcrslib/CPCconfig.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/CPCconfig.def -------------------------------------------------------------------------------- /lib/cpcrslib/CPCconfig_fg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/CPCconfig_fg.def -------------------------------------------------------------------------------- /lib/cpcrslib/CPCconfig_normal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/CPCconfig_normal.def -------------------------------------------------------------------------------- /lib/cpcrslib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/README.md -------------------------------------------------------------------------------- /lib/cpcrslib/borra.bat: -------------------------------------------------------------------------------- 1 | del *.o -------------------------------------------------------------------------------- /lib/cpcrslib/cambios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cambios.txt -------------------------------------------------------------------------------- /lib/cpcrslib/cosas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cosas.md -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_AnyKeyPressed.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_AnyKeyPressed.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_AssignKey.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_AssignKey.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_Bit2Mask.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_Bit2Mask.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_BlitSuperBuffer.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_Chars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_Chars.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_Chars8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_Chars8.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ClrScr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ClrScr.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_CollSp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_CollSp.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_DeleteKeys.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_DeleteKeys.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_GetScrAddress.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_GetScrAddress.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_GetSp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_GetSp.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_GetSp0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_GetSp0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_GetTiles.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_GetTiles.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_InitTileMap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_InitTileMap.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_InputText.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_InputText.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_KeysData.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_KeysData.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PrintGphStr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PrintGphStr.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PrintGphStr0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PrintGphStr0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PrintGphStr2X.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PrintGphStr2X.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PrintGphStrM1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PrintGphStrM1.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PrintGphStrXY.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PrintGphStrXY.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PrintStr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PrintStr.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutMaskSp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutMaskSp.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutMaskSp0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutMaskSp0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutMaskSp2x8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutMaskSp2x8.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutMaskSp4x16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutMaskSp4x16.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutMaskSprite.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutMaskSprite.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSp.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSp0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSp0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSpTileMap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSpTileMap.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSpTileMapO.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSpTileMapO.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSpTr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSpTr.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSpTr0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSpTr0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSpXOR.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSpXOR.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSpXOR0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSpXOR0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSprite.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSprite.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutSpriteXOR.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutSpriteXOR.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutTile2x8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutTile2x8.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutTile2x8b.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutTile2x8b.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutTile4x16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutTile4x16.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_PutTiles.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_PutTiles.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_RLI.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_RLI.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_RRI.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_RRI.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_Random.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_Random.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ReadTile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ReadTile.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_RedefineKey.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_RedefineKey.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ScanKeyboard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ScanKeyboard.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ScrollLeft.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ScrollLeft.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ScrollLeft0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ScrollLeft0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ScrollRight.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ScrollRight.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ScrollRight0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ScrollRight0.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SetBorder.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SetBorder.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SetColour.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SetColour.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SetInk.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SetInk.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SetInkGphStr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SetInkGphStr.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SetMode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SetMode.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SetModo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SetModo.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SetTile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SetTile.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_ShowTileMap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_ShowTileMap.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SpRLM1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SpRLM1.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SpRRM1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SpRRM1.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SpUpdX.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SpUpdX.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_SpUpdY.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_SpUpdY.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TblLookup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_TblLookup.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TestKey.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_TestKey.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TestKeyF.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_TestKeyF.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TestKeyboard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_TestKeyboard.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TouchTileSpXY.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_TouchTileSpXY.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TouchTileXY.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_TouchTileXY.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TouchTiles.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_TouchTiles.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_TrPixLut.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_UnExo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_UnExo.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_Uncrunch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_Uncrunch.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_UpdScr-orig.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_UpdScr-orig.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_UpdScr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_UpdScr.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_UpdScr.asm-strait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_UpdScr.asm-strait -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_UpdTileTable.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_UpdTileTable.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_UpdateTileMap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_UpdateTileMap.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_bitleft2mask.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_bitleft2mask.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpc_bitright2mask.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpc_bitright2mask.asm -------------------------------------------------------------------------------- /lib/cpcrslib/cpcrslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpcrslib.h -------------------------------------------------------------------------------- /lib/cpcrslib/cpcrslib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpcrslib.lib -------------------------------------------------------------------------------- /lib/cpcrslib/cpcrslib.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpcrslib.lst -------------------------------------------------------------------------------- /lib/cpcrslib/cpcrslib_fg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/cpcrslib_fg.lib -------------------------------------------------------------------------------- /lib/cpcrslib/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/make.bat -------------------------------------------------------------------------------- /lib/cpcrslib/multiplication1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/multiplication1.asm -------------------------------------------------------------------------------- /lib/cpcrslib/multiplication2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/multiplication2.asm -------------------------------------------------------------------------------- /lib/cpcrslib/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/output.txt -------------------------------------------------------------------------------- /lib/cpcrslib/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/setenv.bat -------------------------------------------------------------------------------- /lib/cpcrslib/setenv_x86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib/setenv_x86.bat -------------------------------------------------------------------------------- /lib/cpcrslib_bak_20220601.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/cpcrslib_bak_20220601.7z -------------------------------------------------------------------------------- /lib/update-libs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/lib/update-libs.bat -------------------------------------------------------------------------------- /released/helmet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/README.md -------------------------------------------------------------------------------- /released/helmet/bin/behs0_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/behs0_1.bin -------------------------------------------------------------------------------- /released/helmet/bin/behs0_1c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/behs0_1c.bin -------------------------------------------------------------------------------- /released/helmet/bin/ending.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/ending.bin -------------------------------------------------------------------------------- /released/helmet/bin/endingc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/endingc.bin -------------------------------------------------------------------------------- /released/helmet/bin/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/font.bin -------------------------------------------------------------------------------- /released/helmet/bin/helmet.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/helmet.c.bin -------------------------------------------------------------------------------- /released/helmet/bin/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/list.txt -------------------------------------------------------------------------------- /released/helmet/bin/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/loader.bin -------------------------------------------------------------------------------- /released/helmet/bin/loading.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/loading.bin -------------------------------------------------------------------------------- /released/helmet/bin/loading.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/loading.c.bin -------------------------------------------------------------------------------- /released/helmet/bin/mapa0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/mapa0.bin -------------------------------------------------------------------------------- /released/helmet/bin/mapa0c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/mapa0c.bin -------------------------------------------------------------------------------- /released/helmet/bin/mapa1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/mapa1.bin -------------------------------------------------------------------------------- /released/helmet/bin/mapa1c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/mapa1c.bin -------------------------------------------------------------------------------- /released/helmet/bin/mapa2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/mapa2.bin -------------------------------------------------------------------------------- /released/helmet/bin/mapa2c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/mapa2c.bin -------------------------------------------------------------------------------- /released/helmet/bin/marco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/marco.bin -------------------------------------------------------------------------------- /released/helmet/bin/marcoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/marcoc.bin -------------------------------------------------------------------------------- /released/helmet/bin/preloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/preloader.bin -------------------------------------------------------------------------------- /released/helmet/bin/preloading.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/preloading.bin -------------------------------------------------------------------------------- /released/helmet/bin/sprites.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/sprites.bin -------------------------------------------------------------------------------- /released/helmet/bin/title.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/title.bin -------------------------------------------------------------------------------- /released/helmet/bin/titlec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/titlec.bin -------------------------------------------------------------------------------- /released/helmet/bin/work.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/bin/work.bin -------------------------------------------------------------------------------- /released/helmet/dev/128k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/128k.h -------------------------------------------------------------------------------- /released/helmet/dev/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/aplib.h -------------------------------------------------------------------------------- /released/helmet/dev/assets/enems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/assets/enems.h -------------------------------------------------------------------------------- /released/helmet/dev/assets/mapa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/assets/mapa.h -------------------------------------------------------------------------------- /released/helmet/dev/assets/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/assets/pal.h -------------------------------------------------------------------------------- /released/helmet/dev/assets/pal_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/assets/pal_b.h -------------------------------------------------------------------------------- /released/helmet/dev/assets/pal_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/assets/pal_c.h -------------------------------------------------------------------------------- /released/helmet/dev/assets/pal_d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/assets/pal_d.h -------------------------------------------------------------------------------- /released/helmet/dev/autodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/autodefs.h -------------------------------------------------------------------------------- /released/helmet/dev/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/compile.bat -------------------------------------------------------------------------------- /released/helmet/dev/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/crt.asm -------------------------------------------------------------------------------- /released/helmet/dev/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/definitions.h -------------------------------------------------------------------------------- /released/helmet/dev/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/engine.h -------------------------------------------------------------------------------- /released/helmet/dev/helmet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/helmet.bin -------------------------------------------------------------------------------- /released/helmet/dev/helmet.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/helmet.cdt -------------------------------------------------------------------------------- /released/helmet/dev/helmet.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/helmet.map -------------------------------------------------------------------------------- /released/helmet/dev/helmet.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/helmet.sna -------------------------------------------------------------------------------- /released/helmet/dev/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/mainloop.h -------------------------------------------------------------------------------- /released/helmet/dev/mainloop/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/mainloop/hud.h -------------------------------------------------------------------------------- /released/helmet/dev/mk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/mk1.c -------------------------------------------------------------------------------- /released/helmet/dev/mtasmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/mtasmlib.h -------------------------------------------------------------------------------- /released/helmet/dev/my/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/my/config.h -------------------------------------------------------------------------------- /released/helmet/dev/my/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/my/extern.h -------------------------------------------------------------------------------- /released/helmet/dev/my/levelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/my/levelset.h -------------------------------------------------------------------------------- /released/helmet/dev/my/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/my/msc.h -------------------------------------------------------------------------------- /released/helmet/dev/my/wyz/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/my/wyz/songs.h -------------------------------------------------------------------------------- /released/helmet/dev/pantallas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/pantallas.h -------------------------------------------------------------------------------- /released/helmet/dev/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/printer.h -------------------------------------------------------------------------------- /released/helmet/dev/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/prototypes.h -------------------------------------------------------------------------------- /released/helmet/dev/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/savegame.h -------------------------------------------------------------------------------- /released/helmet/dev/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/helmet/dev/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/setenv.bat -------------------------------------------------------------------------------- /released/helmet/dev/tilanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/tilanim.h -------------------------------------------------------------------------------- /released/helmet/dev/wyz_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/dev/wyz_player.h -------------------------------------------------------------------------------- /released/helmet/enems/boh.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/boh.MAP -------------------------------------------------------------------------------- /released/helmet/enems/enems0.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/enems0.ene -------------------------------------------------------------------------------- /released/helmet/enems/enems1.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/enems1.ene -------------------------------------------------------------------------------- /released/helmet/enems/enems2.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/enems2.ene -------------------------------------------------------------------------------- /released/helmet/enems/enems3.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/enems3.ene -------------------------------------------------------------------------------- /released/helmet/enems/enems4.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/enems4.ene -------------------------------------------------------------------------------- /released/helmet/enems/leeme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/leeme.txt -------------------------------------------------------------------------------- /released/helmet/enems/mapa0.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/mapa0.MAP -------------------------------------------------------------------------------- /released/helmet/enems/mapa1.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/mapa1.MAP -------------------------------------------------------------------------------- /released/helmet/enems/mapa2.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/mapa2.MAP -------------------------------------------------------------------------------- /released/helmet/enems/ponedor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/ponedor.bat -------------------------------------------------------------------------------- /released/helmet/enems/spare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/spare.h -------------------------------------------------------------------------------- /released/helmet/enems/work0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/work0.png -------------------------------------------------------------------------------- /released/helmet/enems/work1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/enems/work1.png -------------------------------------------------------------------------------- /released/helmet/gfx/behs0_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/behs0_1.txt -------------------------------------------------------------------------------- /released/helmet/gfx/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/cpc_pal.png -------------------------------------------------------------------------------- /released/helmet/gfx/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/ending.png -------------------------------------------------------------------------------- /released/helmet/gfx/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/font.png -------------------------------------------------------------------------------- /released/helmet/gfx/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/loading.png -------------------------------------------------------------------------------- /released/helmet/gfx/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/marco.png -------------------------------------------------------------------------------- /released/helmet/gfx/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/pal.png -------------------------------------------------------------------------------- /released/helmet/gfx/pal_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/pal_b.png -------------------------------------------------------------------------------- /released/helmet/gfx/pal_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/pal_c.png -------------------------------------------------------------------------------- /released/helmet/gfx/pal_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/pal_d.png -------------------------------------------------------------------------------- /released/helmet/gfx/preloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/preloading.png -------------------------------------------------------------------------------- /released/helmet/gfx/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/sprites.png -------------------------------------------------------------------------------- /released/helmet/gfx/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/title.png -------------------------------------------------------------------------------- /released/helmet/gfx/title.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/title.scr -------------------------------------------------------------------------------- /released/helmet/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/gfx/work.png -------------------------------------------------------------------------------- /released/helmet/levels/behs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/levels/behs.txt -------------------------------------------------------------------------------- /released/helmet/levels/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/levels/font.png -------------------------------------------------------------------------------- /released/helmet/map/mapa0.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/map/mapa0.MAP -------------------------------------------------------------------------------- /released/helmet/map/mapa0.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/map/mapa0.fmp -------------------------------------------------------------------------------- /released/helmet/map/mapa1.FMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/map/mapa1.FMP -------------------------------------------------------------------------------- /released/helmet/map/mapa1.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/map/mapa1.MAP -------------------------------------------------------------------------------- /released/helmet/map/mapa2.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/map/mapa2.MAP -------------------------------------------------------------------------------- /released/helmet/map/mapa2.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/map/mapa2.fmp -------------------------------------------------------------------------------- /released/helmet/map/mapa_trash.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/map/mapa_trash.fmp -------------------------------------------------------------------------------- /released/helmet/mus/00_title.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/mus/00_title.mus -------------------------------------------------------------------------------- /released/helmet/mus/01_ingamea.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/mus/01_ingamea.mus -------------------------------------------------------------------------------- /released/helmet/mus/02_gover.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/mus/02_gover.mus -------------------------------------------------------------------------------- /released/helmet/mus/03_ingameb.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/mus/03_ingameb.mus -------------------------------------------------------------------------------- /released/helmet/mus/04_sclear.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/mus/04_sclear.mus -------------------------------------------------------------------------------- /released/helmet/mus/efectos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/mus/efectos.asm -------------------------------------------------------------------------------- /released/helmet/script/dogmole.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/script/dogmole.spt -------------------------------------------------------------------------------- /released/helmet/script/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/script/msc.h -------------------------------------------------------------------------------- /released/helmet/script/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/helmet/script/test.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/helmet/script/test.spt -------------------------------------------------------------------------------- /released/impossamal/bin/ending.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/ending.bin -------------------------------------------------------------------------------- /released/impossamal/bin/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/font.bin -------------------------------------------------------------------------------- /released/impossamal/bin/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/list.txt -------------------------------------------------------------------------------- /released/impossamal/bin/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/loader.bin -------------------------------------------------------------------------------- /released/impossamal/bin/marco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/marco.bin -------------------------------------------------------------------------------- /released/impossamal/bin/marcoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/marcoc.bin -------------------------------------------------------------------------------- /released/impossamal/bin/sprites_bullet.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/impossamal/bin/sprites_extra.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/impossamal/bin/title.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/title.bin -------------------------------------------------------------------------------- /released/impossamal/bin/titlec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/titlec.bin -------------------------------------------------------------------------------- /released/impossamal/bin/work.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/bin/work.bin -------------------------------------------------------------------------------- /released/impossamal/dev/128k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/128k.h -------------------------------------------------------------------------------- /released/impossamal/dev/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/aplib.h -------------------------------------------------------------------------------- /released/impossamal/dev/autodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/autodefs.h -------------------------------------------------------------------------------- /released/impossamal/dev/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/crt.asm -------------------------------------------------------------------------------- /released/impossamal/dev/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/engine.h -------------------------------------------------------------------------------- /released/impossamal/dev/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/mainloop.h -------------------------------------------------------------------------------- /released/impossamal/dev/mk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/mk1.c -------------------------------------------------------------------------------- /released/impossamal/dev/mk1.c.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/mk1.c.asm -------------------------------------------------------------------------------- /released/impossamal/dev/mtasmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/mtasmlib.h -------------------------------------------------------------------------------- /released/impossamal/dev/my/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/my/msc.h -------------------------------------------------------------------------------- /released/impossamal/dev/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/printer.h -------------------------------------------------------------------------------- /released/impossamal/dev/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/savegame.h -------------------------------------------------------------------------------- /released/impossamal/dev/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/impossamal/dev/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/setenv.bat -------------------------------------------------------------------------------- /released/impossamal/dev/setenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/setenv.ps1 -------------------------------------------------------------------------------- /released/impossamal/dev/texts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/texts.bin -------------------------------------------------------------------------------- /released/impossamal/dev/tilanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/tilanim.h -------------------------------------------------------------------------------- /released/impossamal/dev/zx0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/dev/zx0.h -------------------------------------------------------------------------------- /released/impossamal/enems/enems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/enems/enems.h -------------------------------------------------------------------------------- /released/impossamal/enems/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/enems/mapa.MAP -------------------------------------------------------------------------------- /released/impossamal/enems/ponedor.bat: -------------------------------------------------------------------------------- 1 | ..\utils\ponedor.exe %1 %2 %3 %4 %5 -------------------------------------------------------------------------------- /released/impossamal/enems/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/enems/work.png -------------------------------------------------------------------------------- /released/impossamal/gfx/ct.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/gfx/ct.act -------------------------------------------------------------------------------- /released/impossamal/gfx/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/gfx/ending.png -------------------------------------------------------------------------------- /released/impossamal/gfx/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/gfx/font.png -------------------------------------------------------------------------------- /released/impossamal/gfx/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/gfx/pal.png -------------------------------------------------------------------------------- /released/impossamal/gfx/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/gfx/title.png -------------------------------------------------------------------------------- /released/impossamal/gfx/title.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/gfx/title.scr -------------------------------------------------------------------------------- /released/impossamal/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/gfx/work.png -------------------------------------------------------------------------------- /released/impossamal/map/mapa.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/map/mapa.BAK -------------------------------------------------------------------------------- /released/impossamal/map/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/map/mapa.MAP -------------------------------------------------------------------------------- /released/impossamal/map/mapa.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/map/mapa.fmp -------------------------------------------------------------------------------- /released/impossamal/script/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/script/msc.h -------------------------------------------------------------------------------- /released/impossamal/script/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/impossamal/spare/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/spare/intro.h -------------------------------------------------------------------------------- /released/impossamal/trash/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /released/impossamal/trash/test.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/trash/test.cdt -------------------------------------------------------------------------------- /released/impossamal/utils/2cdt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/utils/2cdt.exe -------------------------------------------------------------------------------- /released/impossamal/utils/2cdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/utils/2cdt.txt -------------------------------------------------------------------------------- /released/impossamal/utils/zx0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/utils/zx0.exe -------------------------------------------------------------------------------- /released/impossamal/utils/zx7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/impossamal/utils/zx7.exe -------------------------------------------------------------------------------- /released/jetpaco/bin/cuts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/cuts.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/cutsc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/cutsc.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/ending.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/ending.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/endingc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/endingc.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/font.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/list.txt -------------------------------------------------------------------------------- /released/jetpaco/bin/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/loader.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/loading.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/loading.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/loading.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/loading.c.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/marco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/marco.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/marcoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/marcoc.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/preloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/preloader.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/sprites.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/sprites.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/title.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/title.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/titlec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/titlec.bin -------------------------------------------------------------------------------- /released/jetpaco/bin/work.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/bin/work.bin -------------------------------------------------------------------------------- /released/jetpaco/dev/128k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/128k.h -------------------------------------------------------------------------------- /released/jetpaco/dev/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/aplib.h -------------------------------------------------------------------------------- /released/jetpaco/dev/assets/mapa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/assets/mapa.h -------------------------------------------------------------------------------- /released/jetpaco/dev/assets/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/assets/pal.h -------------------------------------------------------------------------------- /released/jetpaco/dev/assets/pal1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/assets/pal1.h -------------------------------------------------------------------------------- /released/jetpaco/dev/assets/pal2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/assets/pal2.h -------------------------------------------------------------------------------- /released/jetpaco/dev/autodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/autodefs.h -------------------------------------------------------------------------------- /released/jetpaco/dev/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/compile.bat -------------------------------------------------------------------------------- /released/jetpaco/dev/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/crt.asm -------------------------------------------------------------------------------- /released/jetpaco/dev/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/definitions.h -------------------------------------------------------------------------------- /released/jetpaco/dev/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/engine.h -------------------------------------------------------------------------------- /released/jetpaco/dev/jet_paco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/jet_paco.bin -------------------------------------------------------------------------------- /released/jetpaco/dev/jet_paco.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/jet_paco.cdt -------------------------------------------------------------------------------- /released/jetpaco/dev/jet_paco.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/jet_paco.map -------------------------------------------------------------------------------- /released/jetpaco/dev/jet_paco.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/jet_paco.sna -------------------------------------------------------------------------------- /released/jetpaco/dev/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/mainloop.h -------------------------------------------------------------------------------- /released/jetpaco/dev/mk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/mk1.c -------------------------------------------------------------------------------- /released/jetpaco/dev/mtasmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/mtasmlib.h -------------------------------------------------------------------------------- /released/jetpaco/dev/my/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/my/config.h -------------------------------------------------------------------------------- /released/jetpaco/dev/my/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/my/extern.h -------------------------------------------------------------------------------- /released/jetpaco/dev/my/levelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/my/levelset.h -------------------------------------------------------------------------------- /released/jetpaco/dev/my/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/my/msc.h -------------------------------------------------------------------------------- /released/jetpaco/dev/pantallas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/pantallas.h -------------------------------------------------------------------------------- /released/jetpaco/dev/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/printer.h -------------------------------------------------------------------------------- /released/jetpaco/dev/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/prototypes.h -------------------------------------------------------------------------------- /released/jetpaco/dev/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/savegame.h -------------------------------------------------------------------------------- /released/jetpaco/dev/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/jetpaco/dev/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/setenv.bat -------------------------------------------------------------------------------- /released/jetpaco/dev/setenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/setenv.ps1 -------------------------------------------------------------------------------- /released/jetpaco/dev/tilanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/tilanim.h -------------------------------------------------------------------------------- /released/jetpaco/dev/wyz_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/wyz_player.h -------------------------------------------------------------------------------- /released/jetpaco/dev/zx0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/dev/zx0.h -------------------------------------------------------------------------------- /released/jetpaco/diario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/diario.md -------------------------------------------------------------------------------- /released/jetpaco/enems/enems.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/enems/enems.ene -------------------------------------------------------------------------------- /released/jetpaco/enems/leeme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/enems/leeme.txt -------------------------------------------------------------------------------- /released/jetpaco/enems/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/enems/mapa.MAP -------------------------------------------------------------------------------- /released/jetpaco/enems/ponedor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/enems/ponedor.bat -------------------------------------------------------------------------------- /released/jetpaco/enems/upd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/enems/upd.bat -------------------------------------------------------------------------------- /released/jetpaco/enems/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/enems/work.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/cpc_pal.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/cuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/cuts.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/ending.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/font.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/loading.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/mappy0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/mappy0.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/mappy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/mappy1.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/mappy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/mappy2.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/marco.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/pal.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/pal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/pal1.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/pal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/pal2.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/puri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/puri.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/sprites.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/title.png -------------------------------------------------------------------------------- /released/jetpaco/gfx/title.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/title.scr -------------------------------------------------------------------------------- /released/jetpaco/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/gfx/work.png -------------------------------------------------------------------------------- /released/jetpaco/map/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/map/mapa.MAP -------------------------------------------------------------------------------- /released/jetpaco/map/mapa.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/map/mapa.fmp -------------------------------------------------------------------------------- /released/jetpaco/mus/00_title.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/mus/00_title.mus -------------------------------------------------------------------------------- /released/jetpaco/mus/02_gover.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/mus/02_gover.mus -------------------------------------------------------------------------------- /released/jetpaco/mus/03_ending.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/mus/03_ending.mus -------------------------------------------------------------------------------- /released/jetpaco/mus/04_sclear.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/mus/04_sclear.mus -------------------------------------------------------------------------------- /released/jetpaco/mus/efectos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/mus/efectos.asm -------------------------------------------------------------------------------- /released/jetpaco/script/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/script/msc.h -------------------------------------------------------------------------------- /released/jetpaco/script/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/jetpaco/script/test.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/script/test.spt -------------------------------------------------------------------------------- /released/jetpaco/trash/enems.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/trash/enems.ene -------------------------------------------------------------------------------- /released/jetpaco/trash/enems0.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/trash/enems0.ene -------------------------------------------------------------------------------- /released/jetpaco/trash/enems1.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/trash/enems1.ene -------------------------------------------------------------------------------- /released/jetpaco/trash/mapa.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/trash/mapa.map -------------------------------------------------------------------------------- /released/jetpaco/trash/mapa0.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/trash/mapa0.MAP -------------------------------------------------------------------------------- /released/jetpaco/trash/mapa1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/trash/mapa1.map -------------------------------------------------------------------------------- /released/jetpaco/trash/mtparser.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/jetpaco/trash/mtparser.bi -------------------------------------------------------------------------------- /released/lala+lah/bin/ending.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/ending.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/endingc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/endingc.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/font.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/lala.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/lala.c.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/list.txt -------------------------------------------------------------------------------- /released/lala+lah/bin/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/loader.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/loading.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/loading.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/marco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/marco.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/marcoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/marcoc.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/sprites.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/sprites.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/title.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/title.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/titlec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/titlec.bin -------------------------------------------------------------------------------- /released/lala+lah/bin/work.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/bin/work.bin -------------------------------------------------------------------------------- /released/lala+lah/dev/128k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/128k.h -------------------------------------------------------------------------------- /released/lala+lah/dev/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/aplib.h -------------------------------------------------------------------------------- /released/lala+lah/dev/assets/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/assets/pal.h -------------------------------------------------------------------------------- /released/lala+lah/dev/autodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/autodefs.h -------------------------------------------------------------------------------- /released/lala+lah/dev/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/compile.bat -------------------------------------------------------------------------------- /released/lala+lah/dev/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/crt.asm -------------------------------------------------------------------------------- /released/lala+lah/dev/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/engine.h -------------------------------------------------------------------------------- /released/lala+lah/dev/lala.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/lala.bin -------------------------------------------------------------------------------- /released/lala+lah/dev/lala.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/lala.cdt -------------------------------------------------------------------------------- /released/lala+lah/dev/lala.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/lala.map -------------------------------------------------------------------------------- /released/lala+lah/dev/lala.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/lala.sna -------------------------------------------------------------------------------- /released/lala+lah/dev/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/mainloop.h -------------------------------------------------------------------------------- /released/lala+lah/dev/mk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/mk1.c -------------------------------------------------------------------------------- /released/lala+lah/dev/mtasmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/mtasmlib.h -------------------------------------------------------------------------------- /released/lala+lah/dev/my/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/my/config.h -------------------------------------------------------------------------------- /released/lala+lah/dev/my/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/my/extern.h -------------------------------------------------------------------------------- /released/lala+lah/dev/my/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/my/msc.h -------------------------------------------------------------------------------- /released/lala+lah/dev/pantallas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/pantallas.h -------------------------------------------------------------------------------- /released/lala+lah/dev/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/printer.h -------------------------------------------------------------------------------- /released/lala+lah/dev/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/prototypes.h -------------------------------------------------------------------------------- /released/lala+lah/dev/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/savegame.h -------------------------------------------------------------------------------- /released/lala+lah/dev/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /released/lala+lah/dev/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/setenv.bat -------------------------------------------------------------------------------- /released/lala+lah/dev/setenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/setenv.ps1 -------------------------------------------------------------------------------- /released/lala+lah/dev/tilanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/tilanim.h -------------------------------------------------------------------------------- /released/lala+lah/dev/wyz_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/dev/wyz_player.h -------------------------------------------------------------------------------- /released/lala+lah/diario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/diario.md -------------------------------------------------------------------------------- /released/lala+lah/enems/boh.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/enems/boh.MAP -------------------------------------------------------------------------------- /released/lala+lah/enems/enems.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/enems/enems.ene -------------------------------------------------------------------------------- /released/lala+lah/enems/enems0.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/enems/enems0.ene -------------------------------------------------------------------------------- /released/lala+lah/enems/enems1.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/enems/enems1.ene -------------------------------------------------------------------------------- /released/lala+lah/enems/leeme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/enems/leeme.txt -------------------------------------------------------------------------------- /released/lala+lah/enems/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/enems/mapa.MAP -------------------------------------------------------------------------------- /released/lala+lah/enems/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/enems/work.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/cpc_pal.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/ct.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/ct.act -------------------------------------------------------------------------------- /released/lala+lah/gfx/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/font.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/mappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/mappy.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/marco.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/pal.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/pal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/pal1.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/title.png -------------------------------------------------------------------------------- /released/lala+lah/gfx/title.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/title.scr -------------------------------------------------------------------------------- /released/lala+lah/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/gfx/work.png -------------------------------------------------------------------------------- /released/lala+lah/map/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/map/mapa.MAP -------------------------------------------------------------------------------- /released/lala+lah/map/mapa.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/map/mapa.fmp -------------------------------------------------------------------------------- /released/lala+lah/script/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/released/lala+lah/script/msc.h -------------------------------------------------------------------------------- /released/lala+lah/script/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bin/ending.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/ending.bin -------------------------------------------------------------------------------- /src/bin/endingc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/endingc.bin -------------------------------------------------------------------------------- /src/bin/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/font.bin -------------------------------------------------------------------------------- /src/bin/lala_beta.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/lala_beta.c.bin -------------------------------------------------------------------------------- /src/bin/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/list.txt -------------------------------------------------------------------------------- /src/bin/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/loader.bin -------------------------------------------------------------------------------- /src/bin/loading.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/loading.bin -------------------------------------------------------------------------------- /src/bin/loading.c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/loading.c.bin -------------------------------------------------------------------------------- /src/bin/marco.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/marco.bin -------------------------------------------------------------------------------- /src/bin/marcoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/marcoc.bin -------------------------------------------------------------------------------- /src/bin/preloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/preloader.bin -------------------------------------------------------------------------------- /src/bin/sprites.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/sprites.bin -------------------------------------------------------------------------------- /src/bin/sprites_bullet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/sprites_bullet.bin -------------------------------------------------------------------------------- /src/bin/sprites_extra.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/sprites_extra.bin -------------------------------------------------------------------------------- /src/bin/title.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/title.bin -------------------------------------------------------------------------------- /src/bin/titlec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/titlec.bin -------------------------------------------------------------------------------- /src/bin/work.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/bin/work.bin -------------------------------------------------------------------------------- /src/dev/128k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/128k.h -------------------------------------------------------------------------------- /src/dev/aplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/aplib.h -------------------------------------------------------------------------------- /src/dev/assets/ay_fx_numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/ay_fx_numbers.h -------------------------------------------------------------------------------- /src/dev/assets/enems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/enems.h -------------------------------------------------------------------------------- /src/dev/assets/extrasprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/extrasprites.h -------------------------------------------------------------------------------- /src/dev/assets/levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/levels.h -------------------------------------------------------------------------------- /src/dev/assets/mapa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/mapa.h -------------------------------------------------------------------------------- /src/dev/assets/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/pal.h -------------------------------------------------------------------------------- /src/dev/assets/sprites-empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/sprites-empty.h -------------------------------------------------------------------------------- /src/dev/assets/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/sprites.h -------------------------------------------------------------------------------- /src/dev/assets/tileset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/tileset.h -------------------------------------------------------------------------------- /src/dev/assets/trpixlut.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/trpixlut.bin -------------------------------------------------------------------------------- /src/dev/assets/trpixlut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/trpixlut.h -------------------------------------------------------------------------------- /src/dev/assets/trpixlutc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/assets/trpixlutc.bin -------------------------------------------------------------------------------- /src/dev/autodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/autodefs.h -------------------------------------------------------------------------------- /src/dev/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/compile.bat -------------------------------------------------------------------------------- /src/dev/crt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/crt.asm -------------------------------------------------------------------------------- /src/dev/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/definitions.h -------------------------------------------------------------------------------- /src/dev/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine.h -------------------------------------------------------------------------------- /src/dev/engine/breakable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/breakable.h -------------------------------------------------------------------------------- /src/dev/engine/bullets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/bullets.h -------------------------------------------------------------------------------- /src/dev/engine/c_levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/c_levels.h -------------------------------------------------------------------------------- /src/dev/engine/enengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/enengine.h -------------------------------------------------------------------------------- /src/dev/engine/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/general.h -------------------------------------------------------------------------------- /src/dev/engine/hotspots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/hotspots.h -------------------------------------------------------------------------------- /src/dev/engine/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/player.h -------------------------------------------------------------------------------- /src/dev/engine/simple_cocos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/simple_cocos.h -------------------------------------------------------------------------------- /src/dev/engine/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/engine/update.h -------------------------------------------------------------------------------- /src/dev/lala_beta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/lala_beta.bin -------------------------------------------------------------------------------- /src/dev/lala_beta.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/lala_beta.cdt -------------------------------------------------------------------------------- /src/dev/lala_beta.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/lala_beta.map -------------------------------------------------------------------------------- /src/dev/lala_beta.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/lala_beta.sna -------------------------------------------------------------------------------- /src/dev/loader/loadercpc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/loader/loadercpc.asm -------------------------------------------------------------------------------- /src/dev/loader/preloadercpc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/loader/preloadercpc.asm -------------------------------------------------------------------------------- /src/dev/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/mainloop.h -------------------------------------------------------------------------------- /src/dev/mainloop/flick_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/mainloop/flick_screen.h -------------------------------------------------------------------------------- /src/dev/mainloop/game_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/mainloop/game_loop.h -------------------------------------------------------------------------------- /src/dev/mainloop/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/mainloop/hud.h -------------------------------------------------------------------------------- /src/dev/mk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/mk1.c -------------------------------------------------------------------------------- /src/dev/mtasmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/mtasmlib.h -------------------------------------------------------------------------------- /src/dev/my/ci/after_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/after_game.h -------------------------------------------------------------------------------- /src/dev/my/ci/after_game_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/after_game_loop.h -------------------------------------------------------------------------------- /src/dev/my/ci/after_game_over.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/after_game_over.h -------------------------------------------------------------------------------- /src/dev/my/ci/after_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/after_load.h -------------------------------------------------------------------------------- /src/dev/my/ci/before_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/before_game.h -------------------------------------------------------------------------------- /src/dev/my/ci/custom_heng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/custom_heng.h -------------------------------------------------------------------------------- /src/dev/my/ci/custom_veng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/custom_veng.h -------------------------------------------------------------------------------- /src/dev/my/ci/enems_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/enems_load.h -------------------------------------------------------------------------------- /src/dev/my/ci/enems_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/enems_move.h -------------------------------------------------------------------------------- /src/dev/my/ci/entering_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/entering_game.h -------------------------------------------------------------------------------- /src/dev/my/ci/entering_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/entering_screen.h -------------------------------------------------------------------------------- /src/dev/my/ci/extra_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/extra_functions.h -------------------------------------------------------------------------------- /src/dev/my/ci/extra_routines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/extra_routines.h -------------------------------------------------------------------------------- /src/dev/my/ci/extra_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/extra_vars.h -------------------------------------------------------------------------------- /src/dev/my/ci/hotspots_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/hotspots_custom.h -------------------------------------------------------------------------------- /src/dev/my/ci/on_enems_killed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/on_enems_killed.h -------------------------------------------------------------------------------- /src/dev/my/ci/on_jetpac_boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/on_jetpac_boost.h -------------------------------------------------------------------------------- /src/dev/my/ci/on_player_fires.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/on_player_fires.h -------------------------------------------------------------------------------- /src/dev/my/ci/on_special_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/on_special_tile.h -------------------------------------------------------------------------------- /src/dev/my/ci/on_tile_pushed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/on_tile_pushed.h -------------------------------------------------------------------------------- /src/dev/my/ci/on_wall_broken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/on_wall_broken.h -------------------------------------------------------------------------------- /src/dev/my/ci/on_wall_hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/ci/on_wall_hit.h -------------------------------------------------------------------------------- /src/dev/my/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/config.h -------------------------------------------------------------------------------- /src/dev/my/custom_animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/custom_animation.h -------------------------------------------------------------------------------- /src/dev/my/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/extern.h -------------------------------------------------------------------------------- /src/dev/my/fixed_screens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/fixed_screens.h -------------------------------------------------------------------------------- /src/dev/my/level_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/level_screen.h -------------------------------------------------------------------------------- /src/dev/my/levelset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/levelset.h -------------------------------------------------------------------------------- /src/dev/my/map_custom_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/map_custom_decoder.h -------------------------------------------------------------------------------- /src/dev/my/msc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/msc-config.h -------------------------------------------------------------------------------- /src/dev/my/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/msc.h -------------------------------------------------------------------------------- /src/dev/my/title_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/title_screen.h -------------------------------------------------------------------------------- /src/dev/my/wyz/efectos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/wyz/efectos.h -------------------------------------------------------------------------------- /src/dev/my/wyz/instrumentos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/wyz/instrumentos.h -------------------------------------------------------------------------------- /src/dev/my/wyz/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/my/wyz/songs.h -------------------------------------------------------------------------------- /src/dev/pantallas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/pantallas.h -------------------------------------------------------------------------------- /src/dev/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/printer.h -------------------------------------------------------------------------------- /src/dev/prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/prototypes.h -------------------------------------------------------------------------------- /src/dev/savegame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/savegame.h -------------------------------------------------------------------------------- /src/dev/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/setenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/setenv.bat -------------------------------------------------------------------------------- /src/dev/setenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/setenv.ps1 -------------------------------------------------------------------------------- /src/dev/tilanim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/tilanim.h -------------------------------------------------------------------------------- /src/dev/tilemap_conf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/tilemap_conf.asm -------------------------------------------------------------------------------- /src/dev/wyz_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/wyz_player.h -------------------------------------------------------------------------------- /src/dev/zx0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/dev/zx0.h -------------------------------------------------------------------------------- /src/enems/boh.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/enems/boh.MAP -------------------------------------------------------------------------------- /src/enems/enems.ene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/enems/enems.ene -------------------------------------------------------------------------------- /src/enems/leeme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/enems/leeme.txt -------------------------------------------------------------------------------- /src/enems/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/enems/mapa.MAP -------------------------------------------------------------------------------- /src/enems/ponedor.bat: -------------------------------------------------------------------------------- 1 | ..\utils\ponedor.exe %1 %2 %3 %4 %5 -------------------------------------------------------------------------------- /src/enems/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/enems/work.png -------------------------------------------------------------------------------- /src/gfx/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/cpc_pal.png -------------------------------------------------------------------------------- /src/gfx/ct.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/ct.act -------------------------------------------------------------------------------- /src/gfx/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/ending.png -------------------------------------------------------------------------------- /src/gfx/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/font.png -------------------------------------------------------------------------------- /src/gfx/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/loading.png -------------------------------------------------------------------------------- /src/gfx/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/marco.png -------------------------------------------------------------------------------- /src/gfx/mode1/cpc_pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/cpc_pal.png -------------------------------------------------------------------------------- /src/gfx/mode1/ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/ending.png -------------------------------------------------------------------------------- /src/gfx/mode1/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/font.png -------------------------------------------------------------------------------- /src/gfx/mode1/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/loading.png -------------------------------------------------------------------------------- /src/gfx/mode1/marco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/marco.png -------------------------------------------------------------------------------- /src/gfx/mode1/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/pal.png -------------------------------------------------------------------------------- /src/gfx/mode1/pal_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/pal_loading.png -------------------------------------------------------------------------------- /src/gfx/mode1/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/sprites.png -------------------------------------------------------------------------------- /src/gfx/mode1/sprites_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/sprites_extra.png -------------------------------------------------------------------------------- /src/gfx/mode1/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/title.png -------------------------------------------------------------------------------- /src/gfx/mode1/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/mode1/work.png -------------------------------------------------------------------------------- /src/gfx/pal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/pal.png -------------------------------------------------------------------------------- /src/gfx/pal_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/pal_loading.png -------------------------------------------------------------------------------- /src/gfx/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/sprites.png -------------------------------------------------------------------------------- /src/gfx/sprites_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/sprites_bullet.png -------------------------------------------------------------------------------- /src/gfx/sprites_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/sprites_extra.png -------------------------------------------------------------------------------- /src/gfx/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/title.png -------------------------------------------------------------------------------- /src/gfx/title.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/title.scr -------------------------------------------------------------------------------- /src/gfx/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/gfx/work.png -------------------------------------------------------------------------------- /src/levels/behs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/levels/behs.txt -------------------------------------------------------------------------------- /src/levels/extrasprites.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/levels/extrasprites.asm -------------------------------------------------------------------------------- /src/levels/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/levels/font.png -------------------------------------------------------------------------------- /src/levels/makelevels.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/levels/makelevels.bat -------------------------------------------------------------------------------- /src/map/mapa.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/map/mapa.MAP -------------------------------------------------------------------------------- /src/map/mapa.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/map/mapa.fmp -------------------------------------------------------------------------------- /src/mus/00_title.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/00_title.mus -------------------------------------------------------------------------------- /src/mus/00_title.mus.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/00_title.mus.bin -------------------------------------------------------------------------------- /src/mus/01_ingame.mus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/01_ingame.mus -------------------------------------------------------------------------------- /src/mus/01_ingame.mus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/01_ingame.mus.asm -------------------------------------------------------------------------------- /src/mus/01_ingame.mus.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/01_ingame.mus.bin -------------------------------------------------------------------------------- /src/mus/compress_songs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/compress_songs.bat -------------------------------------------------------------------------------- /src/mus/efectos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/efectos.asm -------------------------------------------------------------------------------- /src/mus/instrumentos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/instrumentos.asm -------------------------------------------------------------------------------- /src/mus/wyz/00_title.wyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/wyz/00_title.wyz -------------------------------------------------------------------------------- /src/mus/wyz/01_ingame.wyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/mus/wyz/01_ingame.wyz -------------------------------------------------------------------------------- /src/script/dogmole.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/script/dogmole.spt -------------------------------------------------------------------------------- /src/script/msc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/script/msc-config.h -------------------------------------------------------------------------------- /src/script/msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/script/msc.h -------------------------------------------------------------------------------- /src/script/scripts.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/script/test.spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/script/test.spt -------------------------------------------------------------------------------- /src/show/lala--20220110a.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/show/lala--20220110a.cdt -------------------------------------------------------------------------------- /src/show/lala--20220110a.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/show/lala--20220110a.sna -------------------------------------------------------------------------------- /src/show/lala--20220111a.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/show/lala--20220111a.cdt -------------------------------------------------------------------------------- /src/show/lala--20220111a.sna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/show/lala--20220111a.sna -------------------------------------------------------------------------------- /src/spare/CPC_27_ colours.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/spare/CPC_27_ colours.act -------------------------------------------------------------------------------- /src/spare/WYZPROPLAY47c_CPC.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/spare/WYZPROPLAY47c_CPC.ASM -------------------------------------------------------------------------------- /src/spare/WYZProPlay47cCPC.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/spare/WYZProPlay47cCPC.ASM -------------------------------------------------------------------------------- /src/spare/easymenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/spare/easymenu.h -------------------------------------------------------------------------------- /src/spare/extern-textos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/spare/extern-textos.h -------------------------------------------------------------------------------- /src/spare/intro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/spare/intro.h -------------------------------------------------------------------------------- /src/spare/loader.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/spare/loader.bas -------------------------------------------------------------------------------- /src/trash/mkcdt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/trash/mkcdt.bat -------------------------------------------------------------------------------- /src/trash/placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/trash/test.cdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/trash/test.cdt -------------------------------------------------------------------------------- /src/utils/2cdt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/2cdt.exe -------------------------------------------------------------------------------- /src/utils/2cdt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/2cdt.txt -------------------------------------------------------------------------------- /src/utils/AKSToBIN.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/AKSToBIN.exe -------------------------------------------------------------------------------- /src/utils/GenTape.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/GenTape.exe -------------------------------------------------------------------------------- /src/utils/WyzFx2Asm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/WyzFx2Asm.exe -------------------------------------------------------------------------------- /src/utils/apack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/apack.exe -------------------------------------------------------------------------------- /src/utils/apultra.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/apultra.exe -------------------------------------------------------------------------------- /src/utils/asm2z88dk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/asm2z88dk.exe -------------------------------------------------------------------------------- /src/utils/bas2tap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/bas2tap.exe -------------------------------------------------------------------------------- /src/utils/behs2bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/behs2bin.exe -------------------------------------------------------------------------------- /src/utils/bin2tap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/bin2tap.exe -------------------------------------------------------------------------------- /src/utils/buildlevels_MK1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/buildlevels_MK1.exe -------------------------------------------------------------------------------- /src/utils/chr2bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/chr2bin.exe -------------------------------------------------------------------------------- /src/utils/cpc2cdt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/cpc2cdt.exe -------------------------------------------------------------------------------- /src/utils/cpctbin2sna.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/cpctbin2sna.exe -------------------------------------------------------------------------------- /src/utils/downgrademap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/downgrademap.exe -------------------------------------------------------------------------------- /src/utils/ene2bin_mk1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/ene2bin_mk1.exe -------------------------------------------------------------------------------- /src/utils/ene2h.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/ene2h.exe -------------------------------------------------------------------------------- /src/utils/flipenems.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/flipenems.exe -------------------------------------------------------------------------------- /src/utils/flipmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/flipmap.exe -------------------------------------------------------------------------------- /src/utils/h2ene.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/h2ene.exe -------------------------------------------------------------------------------- /src/utils/h2map.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/h2map.exe -------------------------------------------------------------------------------- /src/utils/imanol.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/imanol.exe -------------------------------------------------------------------------------- /src/utils/librarian2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/librarian2.exe -------------------------------------------------------------------------------- /src/utils/mapcnv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/mapcnv.exe -------------------------------------------------------------------------------- /src/utils/mapcnvbin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/mapcnvbin.exe -------------------------------------------------------------------------------- /src/utils/mkts_om.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/mkts_om.exe -------------------------------------------------------------------------------- /src/utils/msc3_mk1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/msc3_mk1.exe -------------------------------------------------------------------------------- /src/utils/pasmo-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/pasmo-README.txt -------------------------------------------------------------------------------- /src/utils/pasmo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/pasmo.exe -------------------------------------------------------------------------------- /src/utils/png2scr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/png2scr.exe -------------------------------------------------------------------------------- /src/utils/ponedor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/ponedor.exe -------------------------------------------------------------------------------- /src/utils/printsize.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/printsize.exe -------------------------------------------------------------------------------- /src/utils/reordenator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/reordenator.exe -------------------------------------------------------------------------------- /src/utils/rle53map_sp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/rle53map_sp.exe -------------------------------------------------------------------------------- /src/utils/rle62map_sp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/rle62map_sp.exe -------------------------------------------------------------------------------- /src/utils/src/apultra-devCpp.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/apultra-devCpp.7z -------------------------------------------------------------------------------- /src/utils/src/asm2z88dk.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/asm2z88dk.bas -------------------------------------------------------------------------------- /src/utils/src/behs2bin.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/behs2bin.bas -------------------------------------------------------------------------------- /src/utils/src/chars2work.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/chars2work.bas -------------------------------------------------------------------------------- /src/utils/src/chr2bin.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/chr2bin.bas -------------------------------------------------------------------------------- /src/utils/src/cmdlineparser.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/cmdlineparser.bas -------------------------------------------------------------------------------- /src/utils/src/cmdlineparser.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/cmdlineparser.bi -------------------------------------------------------------------------------- /src/utils/src/cpc2cdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/cpc2cdt/Makefile -------------------------------------------------------------------------------- /src/utils/src/downgrademap.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/downgrademap.bas -------------------------------------------------------------------------------- /src/utils/src/ene2bin_mk1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/ene2bin_mk1.bas -------------------------------------------------------------------------------- /src/utils/src/ene2h.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/ene2h.bas -------------------------------------------------------------------------------- /src/utils/src/fbpng.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/fbpng.bi -------------------------------------------------------------------------------- /src/utils/src/flipenems.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/flipenems.bas -------------------------------------------------------------------------------- /src/utils/src/flipmap.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/flipmap.bas -------------------------------------------------------------------------------- /src/utils/src/h2ene.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/h2ene.bas -------------------------------------------------------------------------------- /src/utils/src/h2map.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/h2map.bas -------------------------------------------------------------------------------- /src/utils/src/imanol.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/imanol.bas -------------------------------------------------------------------------------- /src/utils/src/libfbpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/libfbpng.a -------------------------------------------------------------------------------- /src/utils/src/librarian2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/librarian2.bas -------------------------------------------------------------------------------- /src/utils/src/mapcnv.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/mapcnv.bas -------------------------------------------------------------------------------- /src/utils/src/mapcnv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/mapcnv.exe -------------------------------------------------------------------------------- /src/utils/src/mapcnvbin.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/mapcnvbin.bas -------------------------------------------------------------------------------- /src/utils/src/mkts_om.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/mkts_om.bas -------------------------------------------------------------------------------- /src/utils/src/msc3_mk1.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/msc3_mk1.bas -------------------------------------------------------------------------------- /src/utils/src/mtparser.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/mtparser.bas -------------------------------------------------------------------------------- /src/utils/src/mtparser.bi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/mtparser.bi -------------------------------------------------------------------------------- /src/utils/src/png2scr.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/png2scr.bas -------------------------------------------------------------------------------- /src/utils/src/printsize.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/printsize.bas -------------------------------------------------------------------------------- /src/utils/src/reordenator.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/reordenator.bas -------------------------------------------------------------------------------- /src/utils/src/rle53map_sp.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/rle53map_sp.bas -------------------------------------------------------------------------------- /src/utils/src/rle62map_sp.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/rle62map_sp.bas -------------------------------------------------------------------------------- /src/utils/src/tmmaped.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/tmmaped.bas -------------------------------------------------------------------------------- /src/utils/src/tmxcnv-devCpp.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/tmxcnv-devCpp.7z -------------------------------------------------------------------------------- /src/utils/src/zx7/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/Makefile.win -------------------------------------------------------------------------------- /src/utils/src/zx7/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/compress.c -------------------------------------------------------------------------------- /src/utils/src/zx7/demo.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/demo.asm -------------------------------------------------------------------------------- /src/utils/src/zx7/dzx7_mega.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/dzx7_mega.asm -------------------------------------------------------------------------------- /src/utils/src/zx7/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/optimize.c -------------------------------------------------------------------------------- /src/utils/src/zx7/zx7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/zx7.c -------------------------------------------------------------------------------- /src/utils/src/zx7/zx7.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/zx7.dev -------------------------------------------------------------------------------- /src/utils/src/zx7/zx7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/zx7.h -------------------------------------------------------------------------------- /src/utils/src/zx7/zx7.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/zx7.layout -------------------------------------------------------------------------------- /src/utils/src/zx7/zx7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/src/zx7/zx7.txt -------------------------------------------------------------------------------- /src/utils/tmxcnv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/tmxcnv.exe -------------------------------------------------------------------------------- /src/utils/wyzTrackerParser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/wyzTrackerParser.exe -------------------------------------------------------------------------------- /src/utils/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/zlib1.dll -------------------------------------------------------------------------------- /src/utils/zx0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/zx0.exe -------------------------------------------------------------------------------- /src/utils/zx7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/src/utils/zx7.exe -------------------------------------------------------------------------------- /wip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojontwins/MK1_Pestecera/HEAD/wip.md --------------------------------------------------------------------------------