├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── publish-doxygen.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── extensions.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── COPYING.RUNTIME ├── bin ├── apj.jar ├── apj.txt ├── ar.exe ├── as.exe ├── bintos.exe ├── cc1.exe ├── convsym.exe ├── cp.exe ├── cpp.exe ├── gcc.exe ├── gdb.exe ├── ld.exe ├── libgcc_s_dw2-1.dll ├── liblto_plugin.dll ├── libstdc++-6.dll ├── lto-wrapper.exe ├── lto1.exe ├── lz4w.jar ├── lz4w.txt ├── mac68k.exe ├── make.exe ├── mkdir.exe ├── msys-1.0.dll ├── msys-iconv-2.dll ├── msys-intl-8.dll ├── msys-regex-1.dll ├── msys-termcap-0.dll ├── nm.exe ├── nm2wch.exe ├── objcopy.exe ├── objdump.exe ├── rescomp.jar ├── rescomp.txt ├── rm.exe ├── sh.exe ├── size.exe ├── sizebnd.jar ├── sjasm.exe ├── sjasm.txt ├── xgm.txt ├── xgm2.txt ├── xgm2tool.jar ├── xgmRomBuilder.jar ├── xgmRomBuilder.txt └── xgmtool.exe ├── changelog.txt ├── common.mk ├── doc ├── doxyconfig └── img │ ├── demo_masiaka.gif │ ├── game_doa.gif │ ├── game_tanzer.gif │ └── game_xenocrisis.gif ├── inc ├── asm.h ├── asm_mac.i ├── bmp.h ├── config.h ├── dma.h ├── ext │ ├── console.h │ ├── everdrive.h │ ├── fat16.h │ ├── flash-save │ │ ├── flash.h │ │ └── saveman.h │ ├── link_cable.h │ ├── minimusic │ │ └── minimus.h │ ├── mw │ │ ├── 16c550.h │ │ ├── gamejolt.h │ │ ├── jsmn.h │ │ ├── json.h │ │ ├── lsd.h │ │ ├── megawifi.h │ │ ├── mw-msg.h │ │ └── ssf.h │ └── stb │ │ └── stb_sprintf.h ├── genesis.h ├── joy.h ├── kdebug.h ├── map.h ├── mapper.h ├── maths.h ├── maths3D.h ├── memory.h ├── memory_base.h ├── object.h ├── pal.h ├── pool.h ├── psg.h ├── snd │ ├── pcm │ │ ├── snd_dpcm2.h │ │ ├── snd_pcm.h │ │ ├── snd_pcm4.h │ │ └── tab_vol.h │ ├── smp_null.h │ ├── smp_null_dpcm.h │ ├── sound.h │ ├── xgm.h │ ├── xgm2.h │ ├── z80_def.i80 │ ├── z80_fct.i80 │ └── z80_mac.i80 ├── sprite_eng.h ├── sprite_eng_legacy.h ├── sram.h ├── string.h ├── sys.h ├── tab_cnv.h ├── task.h ├── task_cst.h ├── timer.h ├── tools.h ├── types.h ├── vdp.h ├── vdp_bg.h ├── vdp_pal.h ├── vdp_spr.h ├── vdp_tile.h ├── vram.h ├── ym2612.h └── z80_ctrl.h ├── lib ├── libgcc.a ├── libmd.a └── libmd_debug.a ├── license.txt ├── makefile.gen ├── makelib.gen ├── md.ld ├── project └── template │ ├── .vscode │ ├── c_cpp_properties.json │ ├── extensions.json │ └── settings.json │ ├── inc │ └── main.h │ ├── out │ └── rom.bin │ ├── res │ ├── image │ │ └── starfield.png │ ├── music │ │ └── actraiser.vgm │ ├── res_gfx.res │ ├── res_snd.res │ └── sprite │ │ └── donut.png │ └── src │ ├── boot │ ├── rom_head.c │ └── sega.s │ └── main.c ├── readme.md ├── res ├── image │ ├── font_default.png │ ├── logo_old.png │ ├── sgdk_logo.png │ ├── sgdk_logo_2.png │ ├── sgdk_logo_3.png │ └── sgdk_logo_4.png ├── libres.res └── sound │ └── stop_xgm.bin ├── sample ├── advanced │ ├── sprites-sharing-tiles │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── res │ │ │ ├── graphics │ │ │ │ └── sonic.png │ │ │ └── res_sprite.res │ │ ├── sprites-sharing-tiles.cbp │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ └── tile-animation │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── res │ │ ├── animated_tileset_frame_0.png │ │ ├── animated_tileset_frame_1.png │ │ ├── bga.png │ │ ├── bga_tileset.png │ │ └── resources.res │ │ ├── src │ │ ├── main.c │ │ └── rom_header.c │ │ └── tile-animation.cbp ├── basics │ ├── hello-world │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── hello-world.cbp │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ ├── image │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── image.cbp │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── res │ │ │ ├── gfx.res │ │ │ └── sgdk.png │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ ├── pools │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── pools.cbp │ │ ├── res │ │ │ ├── boom.png │ │ │ ├── bullet.png │ │ │ ├── enemy.png │ │ │ ├── explosion.wav │ │ │ ├── player.png │ │ │ ├── resources.res │ │ │ └── shoot.wav │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ ├── tmx-map │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── res │ │ │ ├── levels │ │ │ │ ├── bg_prio.png │ │ │ │ ├── bg_prio.tsx │ │ │ │ ├── fg_prio.png │ │ │ │ ├── fg_prio.tsx │ │ │ │ ├── map.tmx │ │ │ │ ├── tileset_bg.png │ │ │ │ ├── tileset_bg.tsx │ │ │ │ ├── tileset_fg.png │ │ │ │ └── tileset_fg.tsx │ │ │ ├── maps.res │ │ │ ├── sprites.res │ │ │ └── sprites │ │ │ │ └── owl_flying.png │ │ ├── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ │ └── tmx-map.cbp │ └── tmx-objects │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── res │ │ ├── objects.h │ │ ├── objects.res │ │ ├── sprites.h │ │ ├── sprites.res │ │ ├── sprites │ │ │ ├── bot.png │ │ │ ├── buzz.png │ │ │ ├── crab.png │ │ │ ├── display.png │ │ │ └── sonic.png │ │ └── tmx_map │ │ │ ├── objects_map.tmx │ │ │ ├── stg_1.tiled-project │ │ │ └── stg_1.tiled-session │ │ ├── src │ │ ├── main.c │ │ └── rom_header.c │ │ └── tmx-objects.cbp ├── benchmark │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ ├── bench.cbp │ ├── inc │ │ ├── camera.h │ │ ├── level.h │ │ └── main.h │ ├── out │ │ └── release │ │ │ └── rom.bin │ ├── res │ │ ├── S1_GHZ1_BG.png │ │ ├── S1_GHZ1_FG.png │ │ ├── andor.png │ │ ├── cody.png │ │ ├── donut.png │ │ ├── flare.png │ │ ├── flare_16x16.png │ │ ├── flare_32x32.png │ │ ├── flare_32x32_2.png │ │ ├── gfx.res │ │ ├── guy.png │ │ ├── haggar.png │ │ ├── md_jap_logo_big.png │ │ ├── md_jap_logo_med.png │ │ ├── md_jap_logo_med_x2.png │ │ ├── md_jap_logo_small.png │ │ └── spr_res.res │ └── src │ │ ├── bg_test.c │ │ ├── bmp_test.c │ │ ├── camera.c │ │ ├── level.c │ │ ├── main.c │ │ ├── map_test.c │ │ ├── math_test.c │ │ ├── math_test_a.s │ │ ├── mem_test.c │ │ ├── rom_header.c │ │ └── spr_test.c ├── bitmap │ ├── cube-3D │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── cube_3D.cbp │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ └── src │ │ │ ├── main.c │ │ │ ├── meshs.c │ │ │ ├── meshs.h │ │ │ └── rom_header.c │ └── partic │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── partic.cbp │ │ └── src │ │ ├── main.c │ │ └── rom_header.c ├── demo │ ├── bad-apple │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── bad-apple.cbp │ │ ├── inc │ │ │ ├── main.h │ │ │ ├── movie.h │ │ │ ├── pcm.h │ │ │ ├── tile.h │ │ │ └── tilemap.h │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── res │ │ │ ├── movie │ │ │ │ ├── img_T0000.png │ │ │ │ ├── img_T0001.png │ │ │ │ ├── img_T0002.png │ │ │ │ ├── img_T0003.png │ │ │ │ ├── img_T0004.png │ │ │ │ ├── img_T0005.png │ │ │ │ ├── img_T0006.png │ │ │ │ ├── img_T0007.png │ │ │ │ ├── img_T0008.png │ │ │ │ ├── img_T0009.png │ │ │ │ ├── img_T0010.png │ │ │ │ ├── img_T0011.png │ │ │ │ ├── img_T0012.png │ │ │ │ ├── img_T0013.png │ │ │ │ ├── img_T0014.png │ │ │ │ ├── img_T0015.png │ │ │ │ ├── img_T0016.png │ │ │ │ ├── img_T0017.png │ │ │ │ ├── img_T0018.png │ │ │ │ ├── img_T0019.png │ │ │ │ ├── img_T0020.png │ │ │ │ ├── img_T0021.png │ │ │ │ ├── img_T0022.png │ │ │ │ ├── img_T0023.png │ │ │ │ ├── img_T0024.png │ │ │ │ ├── img_T0025.png │ │ │ │ ├── img_T0026.png │ │ │ │ ├── img_T0027.png │ │ │ │ ├── img_T0028.png │ │ │ │ ├── img_T0029.png │ │ │ │ ├── img_T0030.png │ │ │ │ ├── img_T0031.png │ │ │ │ ├── img_T0032.png │ │ │ │ ├── img_T0033.png │ │ │ │ ├── img_T0034.png │ │ │ │ ├── img_T0035.png │ │ │ │ ├── img_T0036.png │ │ │ │ ├── img_T0037.png │ │ │ │ ├── img_T0038.png │ │ │ │ ├── img_T0039.png │ │ │ │ ├── img_T0040.png │ │ │ │ ├── img_T0041.png │ │ │ │ ├── img_T0042.png │ │ │ │ ├── img_T0043.png │ │ │ │ ├── img_T0044.png │ │ │ │ ├── img_T0045.png │ │ │ │ ├── img_T0046.png │ │ │ │ ├── img_T0047.png │ │ │ │ ├── img_T0048.png │ │ │ │ ├── img_T0049.png │ │ │ │ ├── img_T0050.png │ │ │ │ ├── img_T0051.png │ │ │ │ ├── img_T0052.png │ │ │ │ ├── img_T0053.png │ │ │ │ ├── img_T0054.png │ │ │ │ ├── img_T0055.png │ │ │ │ ├── img_T0056.png │ │ │ │ ├── img_T0057.png │ │ │ │ ├── img_T0058.png │ │ │ │ ├── img_T0059.png │ │ │ │ ├── img_T0060.png │ │ │ │ ├── img_T0061.png │ │ │ │ ├── img_T0062.png │ │ │ │ ├── img_T0063.png │ │ │ │ ├── img_T0064.png │ │ │ │ ├── img_T0065.png │ │ │ │ ├── img_T0066.png │ │ │ │ ├── img_T0067.png │ │ │ │ ├── img_T0068.png │ │ │ │ ├── img_T0069.png │ │ │ │ ├── img_T0070.png │ │ │ │ ├── img_T0071.png │ │ │ │ ├── img_T0072.png │ │ │ │ ├── img_T0073.png │ │ │ │ ├── img_T0074.png │ │ │ │ ├── img_T0075.png │ │ │ │ ├── img_T0076.png │ │ │ │ ├── img_T0077.png │ │ │ │ ├── img_T0078.png │ │ │ │ ├── img_T0079.png │ │ │ │ ├── img_T0080.png │ │ │ │ ├── img_T0081.png │ │ │ │ ├── img_T0082.png │ │ │ │ ├── img_T0083.png │ │ │ │ ├── img_T0084.png │ │ │ │ ├── img_T0085.png │ │ │ │ ├── img_T0086.png │ │ │ │ ├── img_T0087.png │ │ │ │ ├── img_T0088.png │ │ │ │ ├── img_T0089.png │ │ │ │ ├── img_T0090.png │ │ │ │ ├── img_T0091.png │ │ │ │ ├── img_T0092.png │ │ │ │ ├── img_T0093.png │ │ │ │ ├── img_T0094.png │ │ │ │ ├── img_T0095.png │ │ │ │ ├── img_T0096.png │ │ │ │ ├── img_T0097.png │ │ │ │ ├── img_T0098.png │ │ │ │ ├── img_T0099.png │ │ │ │ ├── img_T0100.png │ │ │ │ ├── img_T0101.png │ │ │ │ ├── img_T0102.png │ │ │ │ ├── img_T0103.png │ │ │ │ ├── img_T0104.png │ │ │ │ ├── img_T0105.png │ │ │ │ ├── img_T0106.png │ │ │ │ ├── img_T0107.png │ │ │ │ ├── img_T0108.png │ │ │ │ ├── img_T0109.png │ │ │ │ ├── img_T0110.png │ │ │ │ ├── img_T0111.png │ │ │ │ ├── img_T0112.png │ │ │ │ ├── img_T0113.png │ │ │ │ ├── img_T0114.png │ │ │ │ ├── img_T0115.png │ │ │ │ ├── img_T0116.png │ │ │ │ ├── img_T0117.png │ │ │ │ ├── img_T0118.png │ │ │ │ ├── img_T0119.png │ │ │ │ ├── img_T0120.png │ │ │ │ ├── img_T0121.png │ │ │ │ ├── img_T0122.png │ │ │ │ ├── img_T0123.png │ │ │ │ ├── img_T0124.png │ │ │ │ ├── img_T0125.png │ │ │ │ ├── img_T0126.png │ │ │ │ ├── img_T0127.png │ │ │ │ ├── img_T0128.png │ │ │ │ ├── img_T0129.png │ │ │ │ ├── img_T0130.png │ │ │ │ ├── img_T0131.png │ │ │ │ ├── img_T0132.png │ │ │ │ ├── img_T0133.png │ │ │ │ ├── img_T0134.png │ │ │ │ ├── img_T0135.png │ │ │ │ ├── img_T0136.png │ │ │ │ ├── img_T0137.png │ │ │ │ ├── img_T0138.png │ │ │ │ ├── img_T0139.png │ │ │ │ ├── img_T0140.png │ │ │ │ ├── img_T0141.png │ │ │ │ ├── img_T0142.png │ │ │ │ ├── img_T0143.png │ │ │ │ ├── img_T0144.png │ │ │ │ ├── img_T0145.png │ │ │ │ ├── img_T0146.png │ │ │ │ ├── img_T0147.png │ │ │ │ ├── img_T0148.png │ │ │ │ ├── img_T0149.png │ │ │ │ ├── img_T0150.png │ │ │ │ ├── img_T0151.png │ │ │ │ ├── img_T0152.png │ │ │ │ ├── img_T0153.png │ │ │ │ ├── img_T0154.png │ │ │ │ ├── img_T0155.png │ │ │ │ ├── img_T0156.png │ │ │ │ ├── img_T0157.png │ │ │ │ ├── img_T0158.png │ │ │ │ ├── img_T0159.png │ │ │ │ ├── img_T0160.png │ │ │ │ ├── img_T0161.png │ │ │ │ ├── img_T0162.png │ │ │ │ ├── img_T0163.png │ │ │ │ ├── img_T0164.png │ │ │ │ ├── img_T0165.png │ │ │ │ ├── img_T0166.png │ │ │ │ ├── img_T0167.png │ │ │ │ ├── img_T0168.png │ │ │ │ ├── img_T0169.png │ │ │ │ ├── img_T0170.png │ │ │ │ ├── img_T0171.png │ │ │ │ ├── img_T0172.png │ │ │ │ ├── img_T0173.png │ │ │ │ ├── img_T0174.png │ │ │ │ ├── img_T0175.png │ │ │ │ ├── img_T0176.png │ │ │ │ ├── img_T0177.png │ │ │ │ ├── img_T0178.png │ │ │ │ ├── img_T0179.png │ │ │ │ ├── img_T0180.png │ │ │ │ ├── img_T0181.png │ │ │ │ ├── img_T0182.png │ │ │ │ ├── img_T0183.png │ │ │ │ ├── img_T0184.png │ │ │ │ ├── img_T0185.png │ │ │ │ ├── img_T0186.png │ │ │ │ ├── img_T0187.png │ │ │ │ ├── img_T0188.png │ │ │ │ ├── img_T0189.png │ │ │ │ ├── img_T0190.png │ │ │ │ ├── img_T0191.png │ │ │ │ ├── img_T0192.png │ │ │ │ ├── img_T0193.png │ │ │ │ ├── img_T0194.png │ │ │ │ ├── img_T0195.png │ │ │ │ ├── img_T0196.png │ │ │ │ ├── img_T0197.png │ │ │ │ ├── img_T0198.png │ │ │ │ ├── img_T0199.png │ │ │ │ ├── img_T0200.png │ │ │ │ ├── img_T0201.png │ │ │ │ ├── img_T0202.png │ │ │ │ ├── img_T0203.png │ │ │ │ ├── img_T0204.png │ │ │ │ ├── img_T0205.png │ │ │ │ ├── img_T0206.png │ │ │ │ ├── img_T0207.png │ │ │ │ ├── img_T0208.png │ │ │ │ ├── img_T0209.png │ │ │ │ ├── img_T0210.png │ │ │ │ ├── img_T0211.png │ │ │ │ ├── img_T0212.png │ │ │ │ ├── img_T0213.png │ │ │ │ ├── img_T0214.png │ │ │ │ ├── img_T0215.png │ │ │ │ ├── img_T0216.png │ │ │ │ ├── img_T0217.png │ │ │ │ ├── img_T0218.png │ │ │ │ ├── img_T0219.png │ │ │ │ ├── img_T0220.png │ │ │ │ ├── img_T0221.png │ │ │ │ ├── img_T0222.png │ │ │ │ ├── img_T0223.png │ │ │ │ ├── img_T0224.png │ │ │ │ ├── img_T0225.png │ │ │ │ ├── img_T0226.png │ │ │ │ ├── img_T0227.png │ │ │ │ ├── img_T0228.png │ │ │ │ ├── img_T0229.png │ │ │ │ ├── img_T0230.png │ │ │ │ ├── img_T0231.png │ │ │ │ ├── img_T0232.png │ │ │ │ ├── img_T0233.png │ │ │ │ ├── img_T0234.png │ │ │ │ ├── img_T0235.png │ │ │ │ ├── img_T0236.png │ │ │ │ ├── img_T0237.png │ │ │ │ ├── img_T0238.png │ │ │ │ ├── img_T0239.png │ │ │ │ ├── img_T0240.png │ │ │ │ ├── img_T0241.png │ │ │ │ ├── img_T0242.png │ │ │ │ ├── img_T0243.png │ │ │ │ ├── img_T0244.png │ │ │ │ ├── img_T0245.png │ │ │ │ ├── img_T0246.png │ │ │ │ ├── img_T0247.png │ │ │ │ ├── img_T0248.png │ │ │ │ ├── img_T0249.png │ │ │ │ ├── img_T0250.png │ │ │ │ ├── img_T0251.png │ │ │ │ ├── img_T0252.png │ │ │ │ ├── img_T0253.png │ │ │ │ ├── img_T0254.png │ │ │ │ ├── img_T0255.png │ │ │ │ ├── img_T0256.png │ │ │ │ ├── img_T0257.png │ │ │ │ ├── img_T0258.png │ │ │ │ ├── img_T0259.png │ │ │ │ ├── img_T0260.png │ │ │ │ ├── img_T0261.png │ │ │ │ ├── img_T0262.png │ │ │ │ ├── img_T0263.png │ │ │ │ ├── img_T0264.png │ │ │ │ ├── img_T0265.png │ │ │ │ ├── img_T0266.png │ │ │ │ ├── img_T0267.png │ │ │ │ ├── img_T0268.png │ │ │ │ ├── img_T0269.png │ │ │ │ ├── img_T0270.png │ │ │ │ ├── img_T0271.png │ │ │ │ ├── img_T0272.png │ │ │ │ ├── img_T0273.png │ │ │ │ ├── img_T0274.png │ │ │ │ ├── img_T0275.png │ │ │ │ ├── img_T0276.png │ │ │ │ ├── img_T0277.png │ │ │ │ ├── img_T0278.png │ │ │ │ ├── img_T0279.png │ │ │ │ ├── img_T0280.png │ │ │ │ ├── img_T0281.png │ │ │ │ ├── img_T0282.png │ │ │ │ ├── img_T0283.png │ │ │ │ ├── img_T0284.png │ │ │ │ ├── img_T0285.png │ │ │ │ ├── img_T0286.png │ │ │ │ ├── img_T0287.png │ │ │ │ ├── img_T0288.png │ │ │ │ ├── img_T0289.png │ │ │ │ ├── img_T0290.png │ │ │ │ ├── img_T0291.png │ │ │ │ ├── img_T0292.png │ │ │ │ ├── img_T0293.png │ │ │ │ ├── img_T0294.png │ │ │ │ ├── img_T0295.png │ │ │ │ ├── img_T0296.png │ │ │ │ ├── img_T0297.png │ │ │ │ ├── img_T0298.png │ │ │ │ ├── img_T0299.png │ │ │ │ ├── img_T0300.png │ │ │ │ ├── img_T0301.png │ │ │ │ ├── img_T0302.png │ │ │ │ ├── img_T0303.png │ │ │ │ ├── img_T0304.png │ │ │ │ ├── img_T0305.png │ │ │ │ ├── img_T0306.png │ │ │ │ ├── img_T0307.png │ │ │ │ ├── img_T0308.png │ │ │ │ ├── img_T0309.png │ │ │ │ ├── img_T0310.png │ │ │ │ ├── img_T0311.png │ │ │ │ ├── img_T0312.png │ │ │ │ ├── img_T0313.png │ │ │ │ ├── img_T0314.png │ │ │ │ ├── img_T0315.png │ │ │ │ ├── img_T0316.png │ │ │ │ ├── img_T0317.png │ │ │ │ ├── img_T0318.png │ │ │ │ ├── img_T0319.png │ │ │ │ ├── img_T0320.png │ │ │ │ ├── img_T0321.png │ │ │ │ ├── img_T0322.png │ │ │ │ ├── img_T0323.png │ │ │ │ ├── img_T0324.png │ │ │ │ ├── img_T0325.png │ │ │ │ ├── img_T0326.png │ │ │ │ ├── img_T0327.png │ │ │ │ ├── img_T0328.png │ │ │ │ ├── img_T0329.png │ │ │ │ ├── img_T0330.png │ │ │ │ ├── img_T0331.png │ │ │ │ ├── img_T0332.png │ │ │ │ ├── img_T0333.png │ │ │ │ ├── img_T0334.png │ │ │ │ ├── img_T0335.png │ │ │ │ ├── img_T0336.png │ │ │ │ ├── img_T0337.png │ │ │ │ ├── img_T0338.png │ │ │ │ ├── img_T0339.png │ │ │ │ ├── img_T0340.png │ │ │ │ ├── img_T0341.png │ │ │ │ ├── img_T0342.png │ │ │ │ ├── img_T0343.png │ │ │ │ ├── img_T0344.png │ │ │ │ ├── img_T0345.png │ │ │ │ ├── img_T0346.png │ │ │ │ ├── img_T0347.png │ │ │ │ ├── img_T0348.png │ │ │ │ ├── img_T0349.png │ │ │ │ ├── img_T0350.png │ │ │ │ ├── img_T0351.png │ │ │ │ ├── img_T0352.png │ │ │ │ ├── img_T0353.png │ │ │ │ ├── img_T0354.png │ │ │ │ ├── img_T0355.png │ │ │ │ ├── img_T0356.png │ │ │ │ ├── img_T0357.png │ │ │ │ ├── img_T0358.png │ │ │ │ ├── img_T0359.png │ │ │ │ ├── img_T0360.png │ │ │ │ ├── img_T0361.png │ │ │ │ ├── img_T0362.png │ │ │ │ ├── img_T0363.png │ │ │ │ ├── img_T0364.png │ │ │ │ ├── img_T0365.png │ │ │ │ ├── img_T0366.png │ │ │ │ ├── img_T0367.png │ │ │ │ ├── img_T0368.png │ │ │ │ ├── img_T0369.png │ │ │ │ ├── img_T0370.png │ │ │ │ ├── img_T0371.png │ │ │ │ ├── img_T0372.png │ │ │ │ ├── img_T0373.png │ │ │ │ ├── img_T0374.png │ │ │ │ ├── img_T0375.png │ │ │ │ ├── img_T0376.png │ │ │ │ ├── img_T0377.png │ │ │ │ ├── img_T0378.png │ │ │ │ ├── img_T0379.png │ │ │ │ ├── img_T0380.png │ │ │ │ ├── img_T0381.png │ │ │ │ ├── img_T0382.png │ │ │ │ ├── img_T0383.png │ │ │ │ ├── img_T0384.png │ │ │ │ ├── img_T0385.png │ │ │ │ ├── img_T0386.png │ │ │ │ ├── img_T0387.png │ │ │ │ ├── img_T0388.png │ │ │ │ ├── img_T0389.png │ │ │ │ ├── img_T0390.png │ │ │ │ ├── img_T0391.png │ │ │ │ ├── img_T0392.png │ │ │ │ ├── img_T0393.png │ │ │ │ ├── img_T0394.png │ │ │ │ ├── img_T0395.png │ │ │ │ ├── img_T0396.png │ │ │ │ ├── img_T0397.png │ │ │ │ ├── img_T0398.png │ │ │ │ ├── img_T0399.png │ │ │ │ ├── img_T0400.png │ │ │ │ ├── img_T0401.png │ │ │ │ ├── img_T0402.png │ │ │ │ ├── img_T0403.png │ │ │ │ ├── img_T0404.png │ │ │ │ ├── img_T0405.png │ │ │ │ ├── img_T0406.png │ │ │ │ ├── img_T0407.png │ │ │ │ ├── img_T0408.png │ │ │ │ ├── img_T0409.png │ │ │ │ ├── img_T0410.png │ │ │ │ ├── img_T0411.png │ │ │ │ ├── img_T0412.png │ │ │ │ ├── img_T0413.png │ │ │ │ ├── img_T0414.png │ │ │ │ ├── img_T0415.png │ │ │ │ ├── img_T0416.png │ │ │ │ ├── img_T0417.png │ │ │ │ ├── img_T0418.png │ │ │ │ ├── img_T0419.png │ │ │ │ ├── img_T0420.png │ │ │ │ ├── img_T0421.png │ │ │ │ ├── img_T0422.png │ │ │ │ ├── img_T0423.png │ │ │ │ ├── img_T0424.png │ │ │ │ ├── img_T0425.png │ │ │ │ ├── img_T0426.png │ │ │ │ ├── img_T0427.png │ │ │ │ ├── img_T0428.png │ │ │ │ ├── img_T0429.png │ │ │ │ ├── img_T0430.png │ │ │ │ ├── img_T0431.png │ │ │ │ ├── img_T0432.png │ │ │ │ ├── img_T0433.png │ │ │ │ ├── img_T0434.png │ │ │ │ ├── img_T0435.png │ │ │ │ ├── img_T0436.png │ │ │ │ ├── img_T0437.png │ │ │ │ ├── img_T0438.png │ │ │ │ ├── img_T0439.png │ │ │ │ ├── img_T0440.png │ │ │ │ ├── img_T0441.png │ │ │ │ ├── img_T0442.png │ │ │ │ ├── img_T0443.png │ │ │ │ ├── img_T0444.png │ │ │ │ ├── img_T0445.png │ │ │ │ ├── img_T0446.png │ │ │ │ ├── img_T0447.png │ │ │ │ ├── img_T0448.png │ │ │ │ ├── img_T0449.png │ │ │ │ ├── img_T0450.png │ │ │ │ ├── img_T0451.png │ │ │ │ ├── img_T0452.png │ │ │ │ ├── img_T0453.png │ │ │ │ ├── img_T0454.png │ │ │ │ ├── img_T0455.png │ │ │ │ ├── img_T0456.png │ │ │ │ ├── img_T0457.png │ │ │ │ ├── img_T0458.png │ │ │ │ ├── img_T0459.png │ │ │ │ ├── img_T0460.png │ │ │ │ ├── img_T0461.png │ │ │ │ ├── img_T0462.png │ │ │ │ ├── img_T0463.png │ │ │ │ ├── img_T0464.png │ │ │ │ ├── img_T0465.png │ │ │ │ ├── img_T0466.png │ │ │ │ ├── img_T0467.png │ │ │ │ ├── img_T0468.png │ │ │ │ ├── img_T0469.png │ │ │ │ ├── img_T0470.png │ │ │ │ ├── img_T0471.png │ │ │ │ ├── img_T0472.png │ │ │ │ ├── img_T0473.png │ │ │ │ ├── img_T0474.png │ │ │ │ ├── img_T0475.png │ │ │ │ ├── img_T0476.png │ │ │ │ ├── img_T0477.png │ │ │ │ ├── img_T0478.png │ │ │ │ ├── img_T0479.png │ │ │ │ ├── img_T0480.png │ │ │ │ ├── img_T0481.png │ │ │ │ ├── img_T0482.png │ │ │ │ ├── img_T0483.png │ │ │ │ ├── img_T0484.png │ │ │ │ ├── img_T0485.png │ │ │ │ ├── img_T0486.png │ │ │ │ ├── img_T0487.png │ │ │ │ ├── img_T0488.png │ │ │ │ ├── img_T0489.png │ │ │ │ ├── img_T0490.png │ │ │ │ ├── img_T0491.png │ │ │ │ ├── img_T0492.png │ │ │ │ ├── img_T0493.png │ │ │ │ ├── img_T0494.png │ │ │ │ ├── img_T0495.png │ │ │ │ ├── img_T0496.png │ │ │ │ ├── img_T0497.png │ │ │ │ ├── img_T0498.png │ │ │ │ ├── img_T0499.png │ │ │ │ ├── img_T0500.png │ │ │ │ ├── img_T0501.png │ │ │ │ ├── img_T0502.png │ │ │ │ ├── img_T0503.png │ │ │ │ ├── img_T0504.png │ │ │ │ ├── img_T0505.png │ │ │ │ ├── img_T0506.png │ │ │ │ ├── img_T0507.png │ │ │ │ ├── img_T0508.png │ │ │ │ ├── img_T0509.png │ │ │ │ ├── img_T0510.png │ │ │ │ ├── img_T0511.png │ │ │ │ ├── img_T0512.png │ │ │ │ ├── img_T0513.png │ │ │ │ ├── img_T0514.png │ │ │ │ ├── img_T0515.png │ │ │ │ ├── img_T0516.png │ │ │ │ ├── img_T0517.png │ │ │ │ ├── img_T0518.png │ │ │ │ ├── img_T0519.png │ │ │ │ ├── img_T0520.png │ │ │ │ ├── img_T0521.png │ │ │ │ ├── img_T0522.png │ │ │ │ ├── img_T0523.png │ │ │ │ ├── img_T0524.png │ │ │ │ ├── img_T0525.png │ │ │ │ ├── img_T0526.png │ │ │ │ ├── img_T0527.png │ │ │ │ ├── img_T0528.png │ │ │ │ ├── img_T0529.png │ │ │ │ ├── img_T0530.png │ │ │ │ ├── img_T0531.png │ │ │ │ ├── img_T0532.png │ │ │ │ ├── img_T0533.png │ │ │ │ ├── img_T0534.png │ │ │ │ ├── img_T0535.png │ │ │ │ ├── img_T0536.png │ │ │ │ ├── img_T0537.png │ │ │ │ ├── img_T0538.png │ │ │ │ ├── img_T0539.png │ │ │ │ ├── img_T0540.png │ │ │ │ ├── img_T0541.png │ │ │ │ ├── img_T0542.png │ │ │ │ ├── img_T0543.png │ │ │ │ ├── img_T0544.png │ │ │ │ ├── img_T0545.png │ │ │ │ ├── img_T0546.png │ │ │ │ ├── img_T0547.png │ │ │ │ ├── img_T0548.png │ │ │ │ ├── img_T0549.png │ │ │ │ ├── img_T0550.png │ │ │ │ ├── img_T0551.png │ │ │ │ ├── img_T0552.png │ │ │ │ ├── img_T0553.png │ │ │ │ ├── img_T0554.png │ │ │ │ ├── img_T0555.png │ │ │ │ ├── img_T0556.png │ │ │ │ ├── img_T0557.png │ │ │ │ ├── img_T0558.png │ │ │ │ ├── img_T0559.png │ │ │ │ ├── img_T0560.png │ │ │ │ ├── img_T0561.png │ │ │ │ ├── img_T0562.png │ │ │ │ ├── img_T0563.png │ │ │ │ ├── img_T0564.png │ │ │ │ ├── img_T0565.png │ │ │ │ ├── img_T0566.png │ │ │ │ ├── img_T0567.png │ │ │ │ ├── img_T0568.png │ │ │ │ ├── img_T0569.png │ │ │ │ ├── img_T0570.png │ │ │ │ ├── img_T0571.png │ │ │ │ ├── img_T0572.png │ │ │ │ ├── img_T0573.png │ │ │ │ ├── img_T0574.png │ │ │ │ ├── img_T0575.png │ │ │ │ ├── img_T0576.png │ │ │ │ ├── img_T0577.png │ │ │ │ ├── img_T0578.png │ │ │ │ ├── img_T0579.png │ │ │ │ ├── img_T0580.png │ │ │ │ ├── img_T0581.png │ │ │ │ ├── img_T0582.png │ │ │ │ ├── img_T0583.png │ │ │ │ ├── img_T0584.png │ │ │ │ ├── img_T0585.png │ │ │ │ ├── img_T0586.png │ │ │ │ ├── img_T0587.png │ │ │ │ ├── img_T0588.png │ │ │ │ ├── img_T0589.png │ │ │ │ ├── img_T0590.png │ │ │ │ ├── img_T0591.png │ │ │ │ ├── img_T0592.png │ │ │ │ ├── img_T0593.png │ │ │ │ ├── img_T0594.png │ │ │ │ ├── img_T0595.png │ │ │ │ ├── img_T0596.png │ │ │ │ ├── img_T0597.png │ │ │ │ ├── img_T0598.png │ │ │ │ ├── img_T0599.png │ │ │ │ ├── img_T0600.png │ │ │ │ ├── img_T0601.png │ │ │ │ ├── img_T0602.png │ │ │ │ ├── img_T0603.png │ │ │ │ ├── img_T0604.png │ │ │ │ ├── img_T0605.png │ │ │ │ ├── img_T0606.png │ │ │ │ ├── img_T0607.png │ │ │ │ ├── img_T0608.png │ │ │ │ ├── img_T0609.png │ │ │ │ ├── img_T0610.png │ │ │ │ ├── img_T0611.png │ │ │ │ ├── img_T0612.png │ │ │ │ ├── img_T0613.png │ │ │ │ ├── img_T0614.png │ │ │ │ ├── img_T0615.png │ │ │ │ ├── img_T0616.png │ │ │ │ ├── img_T0617.png │ │ │ │ ├── img_T0618.png │ │ │ │ ├── img_T0619.png │ │ │ │ ├── img_T0620.png │ │ │ │ ├── img_T0621.png │ │ │ │ ├── img_T0622.png │ │ │ │ ├── img_T0623.png │ │ │ │ ├── img_T0624.png │ │ │ │ ├── img_T0625.png │ │ │ │ ├── img_T0626.png │ │ │ │ ├── img_T0627.png │ │ │ │ ├── img_T0628.png │ │ │ │ ├── img_T0629.png │ │ │ │ ├── img_T0630.png │ │ │ │ ├── img_T0631.png │ │ │ │ ├── img_T0632.png │ │ │ │ ├── img_T0633.png │ │ │ │ ├── img_T0634.png │ │ │ │ ├── img_T0635.png │ │ │ │ ├── img_T0636.png │ │ │ │ ├── img_T0637.png │ │ │ │ ├── img_T0638.png │ │ │ │ ├── img_T0639.png │ │ │ │ ├── img_T0640.png │ │ │ │ ├── img_T0641.png │ │ │ │ ├── img_T0642.png │ │ │ │ ├── img_T0643.png │ │ │ │ ├── img_T0644.png │ │ │ │ ├── img_T0645.png │ │ │ │ ├── img_T0646.png │ │ │ │ ├── img_T0647.png │ │ │ │ ├── img_T0648.png │ │ │ │ ├── img_T0649.png │ │ │ │ ├── img_T0650.png │ │ │ │ ├── img_T0651.png │ │ │ │ ├── img_T0652.png │ │ │ │ ├── img_T0653.png │ │ │ │ ├── img_T0654.png │ │ │ │ ├── img_T0655.png │ │ │ │ ├── img_T0656.png │ │ │ │ ├── img_T0657.png │ │ │ │ ├── img_T0658.png │ │ │ │ ├── img_T0659.png │ │ │ │ ├── img_T0660.png │ │ │ │ ├── img_T0661.png │ │ │ │ ├── img_T0662.png │ │ │ │ ├── img_T0663.png │ │ │ │ ├── img_T0664.png │ │ │ │ ├── img_T0665.png │ │ │ │ ├── img_T0666.png │ │ │ │ ├── img_T0667.png │ │ │ │ ├── img_T0668.png │ │ │ │ ├── img_T0669.png │ │ │ │ ├── img_T0670.png │ │ │ │ ├── img_T0671.png │ │ │ │ ├── img_T0672.png │ │ │ │ ├── img_T0673.png │ │ │ │ ├── img_T0674.png │ │ │ │ ├── img_T0675.png │ │ │ │ ├── img_T0676.png │ │ │ │ ├── img_T0677.png │ │ │ │ ├── img_T0678.png │ │ │ │ ├── img_T0679.png │ │ │ │ ├── img_T0680.png │ │ │ │ ├── img_T0681.png │ │ │ │ ├── img_T0682.png │ │ │ │ ├── img_T0683.png │ │ │ │ ├── img_T0684.png │ │ │ │ ├── img_T0685.png │ │ │ │ ├── img_T0686.png │ │ │ │ ├── img_T0687.png │ │ │ │ ├── img_T0688.png │ │ │ │ ├── img_T0689.png │ │ │ │ ├── img_T0690.png │ │ │ │ ├── img_T0691.png │ │ │ │ ├── img_T0692.png │ │ │ │ ├── img_T0693.png │ │ │ │ ├── img_T0694.png │ │ │ │ ├── img_T0695.png │ │ │ │ ├── img_T0696.png │ │ │ │ ├── img_T0697.png │ │ │ │ ├── img_T0698.png │ │ │ │ ├── img_T0699.png │ │ │ │ ├── img_T0700.png │ │ │ │ ├── img_T0701.png │ │ │ │ ├── img_T0702.png │ │ │ │ ├── img_T0703.png │ │ │ │ ├── img_T0704.png │ │ │ │ ├── img_T0705.png │ │ │ │ ├── img_T0706.png │ │ │ │ ├── img_T0707.png │ │ │ │ ├── img_T0708.png │ │ │ │ ├── img_T0709.png │ │ │ │ ├── img_T0710.png │ │ │ │ ├── img_T0711.png │ │ │ │ ├── img_T0712.png │ │ │ │ ├── img_T0713.png │ │ │ │ ├── img_T0714.png │ │ │ │ ├── img_T0715.png │ │ │ │ ├── img_T0716.png │ │ │ │ ├── img_T0717.png │ │ │ │ ├── img_T0718.png │ │ │ │ ├── img_T0719.png │ │ │ │ ├── img_T0720.png │ │ │ │ ├── img_T0721.png │ │ │ │ ├── img_T0722.png │ │ │ │ ├── img_T0723.png │ │ │ │ ├── img_T0724.png │ │ │ │ ├── img_T0725.png │ │ │ │ ├── img_T0726.png │ │ │ │ ├── img_T0727.png │ │ │ │ ├── img_T0728.png │ │ │ │ ├── img_T0729.png │ │ │ │ ├── img_T0730.png │ │ │ │ ├── img_T0731.png │ │ │ │ ├── img_T0732.png │ │ │ │ ├── img_T0733.png │ │ │ │ ├── img_T0734.png │ │ │ │ ├── img_T0735.png │ │ │ │ ├── img_T0736.png │ │ │ │ ├── img_T0737.png │ │ │ │ ├── img_T0738.png │ │ │ │ ├── img_T0739.png │ │ │ │ ├── img_T0740.png │ │ │ │ ├── img_T0741.png │ │ │ │ ├── img_T0742.png │ │ │ │ ├── img_T0743.png │ │ │ │ ├── img_T0744.png │ │ │ │ ├── img_T0745.png │ │ │ │ ├── img_T0746.png │ │ │ │ ├── img_T0747.png │ │ │ │ ├── img_T0748.png │ │ │ │ ├── img_T0749.png │ │ │ │ ├── img_T0750.png │ │ │ │ ├── img_T0751.png │ │ │ │ ├── img_T0752.png │ │ │ │ ├── img_T0753.png │ │ │ │ ├── img_T0754.png │ │ │ │ ├── img_T0755.png │ │ │ │ ├── img_T0756.png │ │ │ │ ├── img_T0757.png │ │ │ │ ├── img_T0758.png │ │ │ │ ├── img_T0759.png │ │ │ │ ├── img_T0760.png │ │ │ │ ├── img_T0761.png │ │ │ │ ├── img_T0762.png │ │ │ │ ├── img_T0763.png │ │ │ │ ├── img_T0764.png │ │ │ │ ├── img_T0765.png │ │ │ │ ├── img_T0766.png │ │ │ │ ├── img_T0767.png │ │ │ │ ├── img_T0768.png │ │ │ │ ├── img_T0769.png │ │ │ │ ├── img_T0770.png │ │ │ │ ├── img_T0771.png │ │ │ │ ├── img_T0772.png │ │ │ │ ├── img_T0773.png │ │ │ │ ├── img_T0774.png │ │ │ │ ├── img_T0775.png │ │ │ │ ├── img_T0776.png │ │ │ │ ├── img_T0777.png │ │ │ │ ├── img_T0778.png │ │ │ │ ├── img_T0779.png │ │ │ │ ├── img_T0780.png │ │ │ │ ├── img_T0781.png │ │ │ │ ├── img_T0782.png │ │ │ │ ├── img_T0783.png │ │ │ │ ├── img_T0784.png │ │ │ │ ├── img_T0785.png │ │ │ │ ├── img_T0786.png │ │ │ │ ├── img_T0787.png │ │ │ │ ├── img_T0788.png │ │ │ │ ├── img_T0789.png │ │ │ │ ├── img_T0790.png │ │ │ │ ├── img_T0791.png │ │ │ │ ├── img_T0792.png │ │ │ │ ├── img_T0793.png │ │ │ │ ├── img_T0794.png │ │ │ │ ├── img_T0795.png │ │ │ │ ├── img_T0796.png │ │ │ │ ├── img_T0797.png │ │ │ │ ├── img_T0798.png │ │ │ │ ├── img_T0799.png │ │ │ │ ├── img_T0800.png │ │ │ │ ├── img_T0801.png │ │ │ │ ├── img_T0802.png │ │ │ │ ├── img_T0803.png │ │ │ │ ├── img_T0804.png │ │ │ │ ├── img_T0805.png │ │ │ │ ├── img_T0806.png │ │ │ │ ├── img_T0807.png │ │ │ │ ├── img_T0808.png │ │ │ │ ├── img_T0809.png │ │ │ │ ├── img_T0810.png │ │ │ │ ├── img_T0811.png │ │ │ │ ├── img_T0812.png │ │ │ │ ├── img_T0813.png │ │ │ │ ├── img_T0814.png │ │ │ │ ├── img_T0815.png │ │ │ │ ├── img_T0816.png │ │ │ │ ├── img_T0817.png │ │ │ │ ├── img_T0818.png │ │ │ │ ├── img_T0819.png │ │ │ │ ├── img_T0820.png │ │ │ │ ├── img_T0821.png │ │ │ │ ├── img_T0822.png │ │ │ │ ├── img_T0823.png │ │ │ │ ├── img_T0824.png │ │ │ │ ├── img_T0825.png │ │ │ │ ├── img_T0826.png │ │ │ │ ├── img_T0827.png │ │ │ │ ├── img_T0828.png │ │ │ │ ├── img_T0829.png │ │ │ │ ├── img_T0830.png │ │ │ │ ├── img_T0831.png │ │ │ │ ├── img_T0832.png │ │ │ │ ├── img_T0833.png │ │ │ │ ├── img_T0834.png │ │ │ │ ├── img_T0835.png │ │ │ │ ├── img_T0836.png │ │ │ │ ├── img_T0837.png │ │ │ │ ├── img_T0838.png │ │ │ │ ├── img_T0839.png │ │ │ │ ├── img_T0840.png │ │ │ │ ├── img_T0841.png │ │ │ │ ├── img_T0842.png │ │ │ │ ├── img_T0843.png │ │ │ │ ├── img_T0844.png │ │ │ │ ├── img_T0845.png │ │ │ │ ├── img_T0846.png │ │ │ │ ├── img_T0847.png │ │ │ │ ├── img_T0848.png │ │ │ │ ├── img_T0849.png │ │ │ │ ├── img_T0850.png │ │ │ │ ├── img_T0851.png │ │ │ │ ├── img_T0852.png │ │ │ │ ├── img_T0853.png │ │ │ │ ├── img_T0854.png │ │ │ │ ├── img_T0855.png │ │ │ │ ├── img_T0856.png │ │ │ │ ├── img_T0857.png │ │ │ │ ├── img_T0858.png │ │ │ │ ├── img_T0859.png │ │ │ │ ├── img_T0860.png │ │ │ │ ├── img_T0861.png │ │ │ │ ├── img_T0862.png │ │ │ │ ├── img_T0863.png │ │ │ │ ├── img_T0864.png │ │ │ │ ├── img_T0865.png │ │ │ │ ├── img_T0866.png │ │ │ │ ├── img_T0867.png │ │ │ │ ├── img_T0868.png │ │ │ │ ├── img_T0869.png │ │ │ │ ├── img_T0870.png │ │ │ │ ├── img_T0871.png │ │ │ │ ├── img_T0872.png │ │ │ │ ├── img_T0873.png │ │ │ │ ├── img_T0874.png │ │ │ │ ├── img_T0875.png │ │ │ │ ├── img_T0876.png │ │ │ │ ├── img_T0877.png │ │ │ │ ├── img_T0878.png │ │ │ │ ├── img_T0879.png │ │ │ │ ├── img_T0880.png │ │ │ │ ├── img_T0881.png │ │ │ │ ├── img_T0882.png │ │ │ │ ├── img_T0883.png │ │ │ │ ├── img_T0884.png │ │ │ │ ├── img_T0885.png │ │ │ │ ├── img_T0886.png │ │ │ │ ├── img_T0887.png │ │ │ │ ├── img_T0888.png │ │ │ │ ├── img_T0889.png │ │ │ │ ├── img_T0890.png │ │ │ │ ├── img_T0891.png │ │ │ │ ├── img_T0892.png │ │ │ │ ├── img_T0893.png │ │ │ │ ├── img_T0894.png │ │ │ │ ├── img_T0895.png │ │ │ │ ├── img_T0896.png │ │ │ │ ├── img_T0897.png │ │ │ │ ├── img_T0898.png │ │ │ │ ├── img_T0899.png │ │ │ │ ├── img_T0900.png │ │ │ │ ├── img_T0901.png │ │ │ │ ├── img_T0902.png │ │ │ │ ├── img_T0903.png │ │ │ │ ├── img_T0904.png │ │ │ │ ├── img_T0905.png │ │ │ │ ├── img_T0906.png │ │ │ │ ├── img_T0907.png │ │ │ │ ├── img_T0908.png │ │ │ │ ├── img_T0909.png │ │ │ │ ├── img_T0910.png │ │ │ │ ├── img_T0911.png │ │ │ │ ├── img_T0912.png │ │ │ │ ├── img_T0913.png │ │ │ │ ├── img_T0914.png │ │ │ │ ├── img_T0915.png │ │ │ │ ├── img_T0916.png │ │ │ │ ├── img_T0917.png │ │ │ │ ├── img_T0918.png │ │ │ │ ├── img_T0919.png │ │ │ │ ├── img_T0920.png │ │ │ │ ├── img_T0921.png │ │ │ │ ├── img_T0922.png │ │ │ │ ├── img_T0923.png │ │ │ │ ├── img_T0924.png │ │ │ │ ├── img_T0925.png │ │ │ │ ├── img_T0926.png │ │ │ │ ├── img_T0927.png │ │ │ │ ├── img_T0928.png │ │ │ │ ├── img_T0929.png │ │ │ │ ├── img_T0930.png │ │ │ │ ├── img_T0931.png │ │ │ │ ├── img_T0932.png │ │ │ │ ├── img_T0933.png │ │ │ │ ├── img_T0934.png │ │ │ │ ├── img_T0935.png │ │ │ │ ├── img_T0936.png │ │ │ │ ├── img_T0937.png │ │ │ │ ├── img_T0938.png │ │ │ │ ├── img_T0939.png │ │ │ │ ├── img_T0940.png │ │ │ │ ├── img_T0941.png │ │ │ │ ├── img_T0942.png │ │ │ │ ├── img_T0943.png │ │ │ │ ├── img_T0944.png │ │ │ │ ├── img_T0945.png │ │ │ │ ├── img_T0946.png │ │ │ │ ├── img_T0947.png │ │ │ │ ├── img_T0948.png │ │ │ │ ├── img_T0949.png │ │ │ │ ├── img_T0950.png │ │ │ │ ├── img_T0951.png │ │ │ │ ├── img_T0952.png │ │ │ │ ├── img_T0953.png │ │ │ │ ├── img_T0954.png │ │ │ │ ├── img_T0955.png │ │ │ │ ├── img_T0956.png │ │ │ │ ├── img_T0957.png │ │ │ │ ├── img_T0958.png │ │ │ │ ├── img_T0959.png │ │ │ │ ├── img_T0960.png │ │ │ │ ├── img_T0961.png │ │ │ │ ├── img_T0962.png │ │ │ │ ├── img_T0963.png │ │ │ │ ├── img_T0964.png │ │ │ │ ├── img_T0965.png │ │ │ │ ├── img_T0966.png │ │ │ │ ├── img_T0967.png │ │ │ │ ├── img_T0968.png │ │ │ │ ├── img_T0969.png │ │ │ │ ├── img_T0970.png │ │ │ │ ├── img_T0971.png │ │ │ │ ├── img_T0972.png │ │ │ │ ├── img_T0973.png │ │ │ │ ├── img_T0974.png │ │ │ │ ├── img_T0975.png │ │ │ │ ├── img_T0976.png │ │ │ │ ├── img_T0977.png │ │ │ │ ├── img_T0978.png │ │ │ │ ├── img_T0979.png │ │ │ │ ├── img_T0980.png │ │ │ │ ├── img_T0981.png │ │ │ │ ├── img_T0982.png │ │ │ │ ├── img_T0983.png │ │ │ │ ├── img_T0984.png │ │ │ │ ├── img_T0985.png │ │ │ │ ├── img_T0986.png │ │ │ │ ├── img_T0987.png │ │ │ │ ├── img_T0988.png │ │ │ │ ├── img_T0989.png │ │ │ │ ├── img_T0990.png │ │ │ │ ├── img_T0991.png │ │ │ │ ├── img_T0992.png │ │ │ │ ├── img_T0993.png │ │ │ │ ├── img_T0994.png │ │ │ │ ├── img_T0995.png │ │ │ │ ├── img_T0996.png │ │ │ │ ├── img_T0997.png │ │ │ │ ├── img_T0998.png │ │ │ │ ├── img_T0999.png │ │ │ │ ├── img_T1000.png │ │ │ │ ├── img_T1001.png │ │ │ │ ├── img_T1002.png │ │ │ │ ├── img_T1003.png │ │ │ │ ├── img_T1004.png │ │ │ │ ├── img_T1005.png │ │ │ │ ├── img_T1006.png │ │ │ │ ├── img_T1007.png │ │ │ │ ├── img_T1008.png │ │ │ │ ├── img_T1009.png │ │ │ │ ├── img_T1010.png │ │ │ │ ├── img_T1011.png │ │ │ │ ├── img_T1012.png │ │ │ │ ├── img_T1013.png │ │ │ │ ├── img_T1014.png │ │ │ │ ├── img_T1015.png │ │ │ │ ├── img_T1016.png │ │ │ │ ├── img_T1017.png │ │ │ │ ├── img_T1018.png │ │ │ │ ├── img_T1019.png │ │ │ │ ├── img_T1020.png │ │ │ │ ├── img_T1021.png │ │ │ │ ├── img_T1022.png │ │ │ │ ├── img_T1023.png │ │ │ │ ├── img_T1024.png │ │ │ │ ├── img_T1025.png │ │ │ │ ├── img_T1026.png │ │ │ │ ├── img_T1027.png │ │ │ │ ├── img_T1028.png │ │ │ │ ├── img_T1029.png │ │ │ │ ├── img_T1030.png │ │ │ │ ├── img_T1031.png │ │ │ │ ├── img_T1032.png │ │ │ │ ├── img_T1033.png │ │ │ │ ├── img_T1034.png │ │ │ │ ├── img_T1035.png │ │ │ │ ├── img_T1036.png │ │ │ │ ├── img_T1037.png │ │ │ │ ├── img_T1038.png │ │ │ │ ├── img_T1039.png │ │ │ │ ├── img_T1040.png │ │ │ │ ├── img_T1041.png │ │ │ │ ├── img_T1042.png │ │ │ │ ├── img_T1043.png │ │ │ │ ├── img_T1044.png │ │ │ │ ├── img_T1045.png │ │ │ │ ├── img_T1046.png │ │ │ │ ├── img_T1047.png │ │ │ │ ├── img_T1048.png │ │ │ │ ├── img_T1049.png │ │ │ │ ├── img_T1050.png │ │ │ │ ├── img_T1051.png │ │ │ │ ├── img_T1052.png │ │ │ │ ├── img_T1053.png │ │ │ │ ├── img_T1054.png │ │ │ │ ├── img_T1055.png │ │ │ │ ├── img_T1056.png │ │ │ │ ├── img_T1057.png │ │ │ │ ├── img_T1058.png │ │ │ │ ├── img_T1059.png │ │ │ │ ├── img_T1060.png │ │ │ │ ├── img_T1061.png │ │ │ │ ├── img_T1062.png │ │ │ │ ├── img_T1063.png │ │ │ │ ├── img_T1064.png │ │ │ │ ├── img_T1065.png │ │ │ │ ├── img_T1066.png │ │ │ │ ├── img_T1067.png │ │ │ │ ├── img_T1068.png │ │ │ │ ├── img_T1069.png │ │ │ │ ├── img_T1070.png │ │ │ │ ├── img_T1071.png │ │ │ │ ├── img_T1072.png │ │ │ │ ├── img_T1073.png │ │ │ │ ├── img_T1074.png │ │ │ │ ├── img_T1075.png │ │ │ │ ├── img_T1076.png │ │ │ │ ├── img_T1077.png │ │ │ │ ├── img_T1078.png │ │ │ │ ├── img_T1079.png │ │ │ │ ├── img_T1080.png │ │ │ │ ├── img_T1081.png │ │ │ │ ├── img_T1082.png │ │ │ │ ├── img_T1083.png │ │ │ │ ├── img_T1084.png │ │ │ │ ├── img_T1085.png │ │ │ │ ├── img_T1086.png │ │ │ │ ├── img_T1087.png │ │ │ │ ├── img_T1088.png │ │ │ │ ├── img_T1089.png │ │ │ │ ├── img_T1090.png │ │ │ │ ├── img_T1091.png │ │ │ │ ├── img_T1092.png │ │ │ │ ├── img_T1093.png │ │ │ │ ├── img_T1094.png │ │ │ │ ├── img_T1095.png │ │ │ │ ├── img_T1096.png │ │ │ │ ├── img_T1097.png │ │ │ │ ├── img_T1098.png │ │ │ │ ├── img_T1099.png │ │ │ │ ├── img_T1100.png │ │ │ │ ├── img_T1101.png │ │ │ │ ├── img_T1102.png │ │ │ │ ├── img_T1103.png │ │ │ │ ├── img_T1104.png │ │ │ │ ├── img_T1105.png │ │ │ │ ├── img_T1106.png │ │ │ │ ├── img_T1107.png │ │ │ │ ├── img_T1108.png │ │ │ │ ├── img_T1109.png │ │ │ │ ├── img_T1110.png │ │ │ │ ├── img_T1111.png │ │ │ │ ├── img_T1112.png │ │ │ │ ├── img_T1113.png │ │ │ │ ├── img_T1114.png │ │ │ │ ├── img_T1115.png │ │ │ │ ├── img_T1116.png │ │ │ │ ├── img_T1117.png │ │ │ │ ├── img_T1118.png │ │ │ │ ├── img_T1119.png │ │ │ │ ├── img_T1120.png │ │ │ │ ├── img_T1121.png │ │ │ │ ├── img_T1122.png │ │ │ │ ├── img_T1123.png │ │ │ │ ├── img_T1124.png │ │ │ │ ├── img_T1125.png │ │ │ │ ├── img_T1126.png │ │ │ │ ├── img_T1127.png │ │ │ │ ├── img_T1128.png │ │ │ │ ├── img_T1129.png │ │ │ │ ├── img_T1130.png │ │ │ │ ├── img_T1131.png │ │ │ │ ├── img_T1132.png │ │ │ │ ├── img_T1133.png │ │ │ │ ├── img_T1134.png │ │ │ │ ├── img_T1135.png │ │ │ │ ├── img_T1136.png │ │ │ │ ├── img_T1137.png │ │ │ │ ├── img_T1138.png │ │ │ │ ├── img_T1139.png │ │ │ │ ├── img_T1140.png │ │ │ │ ├── img_T1141.png │ │ │ │ ├── img_T1142.png │ │ │ │ ├── img_T1143.png │ │ │ │ ├── img_T1144.png │ │ │ │ ├── img_T1145.png │ │ │ │ ├── img_T1146.png │ │ │ │ ├── img_T1147.png │ │ │ │ ├── img_T1148.png │ │ │ │ ├── img_T1149.png │ │ │ │ ├── img_T1150.png │ │ │ │ ├── img_T1151.png │ │ │ │ ├── img_T1152.png │ │ │ │ ├── img_T1153.png │ │ │ │ ├── img_T1154.png │ │ │ │ ├── img_T1155.png │ │ │ │ ├── img_T1156.png │ │ │ │ ├── img_T1157.png │ │ │ │ ├── img_T1158.png │ │ │ │ ├── img_T1159.png │ │ │ │ ├── img_T1160.png │ │ │ │ ├── img_T1161.png │ │ │ │ ├── img_T1162.png │ │ │ │ ├── img_T1163.png │ │ │ │ ├── img_T1164.png │ │ │ │ ├── img_T1165.png │ │ │ │ ├── img_T1166.png │ │ │ │ ├── img_T1167.png │ │ │ │ ├── img_T1168.png │ │ │ │ ├── img_T1169.png │ │ │ │ ├── img_T1170.png │ │ │ │ ├── img_T1171.png │ │ │ │ ├── img_T1172.png │ │ │ │ ├── img_T1173.png │ │ │ │ ├── img_T1174.png │ │ │ │ ├── img_T1175.png │ │ │ │ ├── img_T1176.png │ │ │ │ ├── img_T1177.png │ │ │ │ ├── img_T1178.png │ │ │ │ ├── img_T1179.png │ │ │ │ ├── img_T1180.png │ │ │ │ ├── img_T1181.png │ │ │ │ ├── img_T1182.png │ │ │ │ ├── img_T1183.png │ │ │ │ ├── img_T1184.png │ │ │ │ ├── img_T1185.png │ │ │ │ ├── img_T1186.png │ │ │ │ ├── img_T1187.png │ │ │ │ ├── img_T1188.png │ │ │ │ ├── img_T1189.png │ │ │ │ ├── img_T1190.png │ │ │ │ ├── img_T1191.png │ │ │ │ ├── img_T1192.png │ │ │ │ ├── img_T1193.png │ │ │ │ ├── img_T1194.png │ │ │ │ ├── img_T1195.png │ │ │ │ ├── img_T1196.png │ │ │ │ ├── img_T1197.png │ │ │ │ ├── img_T1198.png │ │ │ │ ├── img_T1199.png │ │ │ │ ├── img_T1200.png │ │ │ │ ├── img_T1201.png │ │ │ │ ├── img_T1202.png │ │ │ │ ├── img_T1203.png │ │ │ │ ├── img_T1204.png │ │ │ │ ├── img_T1205.png │ │ │ │ ├── img_T1206.png │ │ │ │ ├── img_T1207.png │ │ │ │ ├── img_T1208.png │ │ │ │ ├── img_T1209.png │ │ │ │ ├── img_T1210.png │ │ │ │ ├── img_T1211.png │ │ │ │ ├── img_T1212.png │ │ │ │ ├── img_T1213.png │ │ │ │ ├── img_T1214.png │ │ │ │ ├── img_T1215.png │ │ │ │ ├── img_T1216.png │ │ │ │ ├── img_T1217.png │ │ │ │ ├── img_T1218.png │ │ │ │ ├── img_T1219.png │ │ │ │ ├── img_T1220.png │ │ │ │ ├── img_T1221.png │ │ │ │ ├── img_T1222.png │ │ │ │ ├── img_T1223.png │ │ │ │ ├── img_T1224.png │ │ │ │ ├── img_T1225.png │ │ │ │ ├── img_T1226.png │ │ │ │ ├── img_T1227.png │ │ │ │ ├── img_T1228.png │ │ │ │ ├── img_T1229.png │ │ │ │ ├── img_T1230.png │ │ │ │ ├── img_T1231.png │ │ │ │ ├── img_T1232.png │ │ │ │ ├── img_T1233.png │ │ │ │ ├── img_T1234.png │ │ │ │ ├── img_T1235.png │ │ │ │ ├── img_T1236.png │ │ │ │ ├── img_T1237.png │ │ │ │ ├── img_T1238.png │ │ │ │ ├── img_T1239.png │ │ │ │ ├── img_T1240.png │ │ │ │ ├── img_T1241.png │ │ │ │ ├── img_T1242.png │ │ │ │ ├── img_T1243.png │ │ │ │ ├── img_T1244.png │ │ │ │ ├── img_T1245.png │ │ │ │ ├── img_T1246.png │ │ │ │ ├── img_T1247.png │ │ │ │ ├── img_T1248.png │ │ │ │ ├── img_T1249.png │ │ │ │ ├── img_T1250.png │ │ │ │ ├── img_T1251.png │ │ │ │ ├── img_T1252.png │ │ │ │ ├── img_T1253.png │ │ │ │ ├── img_T1254.png │ │ │ │ ├── img_T1255.png │ │ │ │ ├── img_T1256.png │ │ │ │ ├── img_T1257.png │ │ │ │ ├── img_T1258.png │ │ │ │ ├── img_T1259.png │ │ │ │ ├── img_T1260.png │ │ │ │ ├── img_T1261.png │ │ │ │ ├── img_T1262.png │ │ │ │ ├── img_T1263.png │ │ │ │ ├── img_T1264.png │ │ │ │ ├── img_T1265.png │ │ │ │ ├── img_T1266.png │ │ │ │ ├── img_T1267.png │ │ │ │ ├── img_T1268.png │ │ │ │ ├── img_T1269.png │ │ │ │ ├── img_T1270.png │ │ │ │ ├── img_T1271.png │ │ │ │ ├── img_T1272.png │ │ │ │ ├── img_T1273.png │ │ │ │ ├── img_T1274.png │ │ │ │ ├── img_T1275.png │ │ │ │ ├── img_T1276.png │ │ │ │ ├── img_T1277.png │ │ │ │ ├── img_T1278.png │ │ │ │ ├── img_T1279.png │ │ │ │ ├── img_T1280.png │ │ │ │ ├── img_T1281.png │ │ │ │ ├── img_T1282.png │ │ │ │ ├── img_T1283.png │ │ │ │ ├── img_T1284.png │ │ │ │ ├── img_T1285.png │ │ │ │ ├── img_T1286.png │ │ │ │ ├── img_T1287.png │ │ │ │ ├── img_T1288.png │ │ │ │ ├── img_T1289.png │ │ │ │ ├── img_T1290.png │ │ │ │ ├── img_T1291.png │ │ │ │ ├── img_T1292.png │ │ │ │ ├── img_T1293.png │ │ │ │ ├── img_T1294.png │ │ │ │ ├── img_T1295.png │ │ │ │ ├── img_T1296.png │ │ │ │ ├── img_T1297.png │ │ │ │ ├── img_T1298.png │ │ │ │ ├── img_T1299.png │ │ │ │ ├── img_T1300.png │ │ │ │ ├── img_T1301.png │ │ │ │ ├── img_T1302.png │ │ │ │ ├── img_T1303.png │ │ │ │ ├── img_T1304.png │ │ │ │ ├── img_T1305.png │ │ │ │ ├── img_T1306.png │ │ │ │ ├── img_T1307.png │ │ │ │ ├── img_T1308.png │ │ │ │ ├── img_T1309.png │ │ │ │ ├── img_T1310.png │ │ │ │ ├── img_T1311.png │ │ │ │ ├── img_T1312.png │ │ │ │ ├── img_T1313.png │ │ │ │ ├── img_T1314.png │ │ │ │ ├── img_T1315.png │ │ │ │ ├── img_T1316.png │ │ │ │ ├── img_T1317.png │ │ │ │ ├── img_T1318.png │ │ │ │ ├── img_T1319.png │ │ │ │ ├── img_T1320.png │ │ │ │ ├── img_T1321.png │ │ │ │ ├── img_T1322.png │ │ │ │ ├── img_T1323.png │ │ │ │ ├── img_T1324.png │ │ │ │ ├── img_T1325.png │ │ │ │ ├── img_T1326.png │ │ │ │ ├── img_T1327.png │ │ │ │ ├── img_T1328.png │ │ │ │ ├── img_T1329.png │ │ │ │ ├── img_T1330.png │ │ │ │ ├── img_T1331.png │ │ │ │ ├── img_T1332.png │ │ │ │ ├── img_T1333.png │ │ │ │ ├── img_T1334.png │ │ │ │ ├── img_T1335.png │ │ │ │ ├── img_T1336.png │ │ │ │ ├── img_T1337.png │ │ │ │ ├── img_T1338.png │ │ │ │ ├── img_T1339.png │ │ │ │ ├── img_T1340.png │ │ │ │ ├── img_T1341.png │ │ │ │ ├── img_T1342.png │ │ │ │ ├── img_T1343.png │ │ │ │ ├── img_T1344.png │ │ │ │ ├── img_T1345.png │ │ │ │ ├── img_T1346.png │ │ │ │ ├── img_T1347.png │ │ │ │ ├── img_T1348.png │ │ │ │ ├── img_T1349.png │ │ │ │ ├── img_T1350.png │ │ │ │ ├── img_T1351.png │ │ │ │ ├── img_T1352.png │ │ │ │ ├── img_T1353.png │ │ │ │ ├── img_T1354.png │ │ │ │ ├── img_T1355.png │ │ │ │ ├── img_T1356.png │ │ │ │ ├── img_T1357.png │ │ │ │ ├── img_T1358.png │ │ │ │ ├── img_T1359.png │ │ │ │ ├── img_T1360.png │ │ │ │ ├── img_T1361.png │ │ │ │ ├── img_T1362.png │ │ │ │ ├── img_T1363.png │ │ │ │ ├── img_T1364.png │ │ │ │ ├── img_T1365.png │ │ │ │ ├── img_T1366.png │ │ │ │ ├── img_T1367.png │ │ │ │ ├── img_T1368.png │ │ │ │ ├── img_T1369.png │ │ │ │ ├── img_T1370.png │ │ │ │ ├── img_T1371.png │ │ │ │ ├── img_T1372.png │ │ │ │ ├── img_T1373.png │ │ │ │ ├── img_T1374.png │ │ │ │ ├── img_T1375.png │ │ │ │ ├── img_T1376.png │ │ │ │ ├── img_T1377.png │ │ │ │ ├── img_T1378.png │ │ │ │ ├── img_T1379.png │ │ │ │ ├── img_T1380.png │ │ │ │ ├── img_T1381.png │ │ │ │ ├── img_T1382.png │ │ │ │ ├── img_T1383.png │ │ │ │ ├── img_T1384.png │ │ │ │ ├── img_T1385.png │ │ │ │ ├── img_T1386.png │ │ │ │ ├── img_T1387.png │ │ │ │ ├── img_T1388.png │ │ │ │ ├── img_T1389.png │ │ │ │ ├── img_T1390.png │ │ │ │ ├── img_T1391.png │ │ │ │ ├── img_T1392.png │ │ │ │ ├── img_T1393.png │ │ │ │ ├── img_T1394.png │ │ │ │ ├── img_T1395.png │ │ │ │ ├── img_T1396.png │ │ │ │ ├── img_T1397.png │ │ │ │ ├── img_T1398.png │ │ │ │ ├── img_T1399.png │ │ │ │ ├── img_T1400.png │ │ │ │ ├── img_T1401.png │ │ │ │ ├── img_T1402.png │ │ │ │ ├── img_T1403.png │ │ │ │ ├── img_T1404.png │ │ │ │ ├── img_T1405.png │ │ │ │ ├── img_T1406.png │ │ │ │ ├── img_T1407.png │ │ │ │ ├── img_T1408.png │ │ │ │ ├── img_T1409.png │ │ │ │ ├── img_T1410.png │ │ │ │ ├── img_T1411.png │ │ │ │ ├── img_T1412.png │ │ │ │ ├── img_T1413.png │ │ │ │ ├── img_T1414.png │ │ │ │ ├── img_T1415.png │ │ │ │ ├── img_T1416.png │ │ │ │ ├── img_T1417.png │ │ │ │ ├── img_T1418.png │ │ │ │ ├── img_T1419.png │ │ │ │ ├── img_T1420.png │ │ │ │ ├── img_T1421.png │ │ │ │ ├── img_T1422.png │ │ │ │ ├── img_T1423.png │ │ │ │ ├── img_T1424.png │ │ │ │ ├── img_T1425.png │ │ │ │ ├── img_T1426.png │ │ │ │ ├── img_T1427.png │ │ │ │ ├── img_T1428.png │ │ │ │ ├── img_T1429.png │ │ │ │ ├── img_T1430.png │ │ │ │ ├── img_T1431.png │ │ │ │ ├── img_T1432.png │ │ │ │ ├── img_T1433.png │ │ │ │ ├── img_T1434.png │ │ │ │ ├── img_T1435.png │ │ │ │ ├── img_T1436.png │ │ │ │ ├── img_T1437.png │ │ │ │ ├── img_T1438.png │ │ │ │ ├── img_T1439.png │ │ │ │ ├── img_T1440.png │ │ │ │ ├── img_T1441.png │ │ │ │ ├── img_T1442.png │ │ │ │ ├── img_T1443.png │ │ │ │ ├── img_T1444.png │ │ │ │ ├── img_T1445.png │ │ │ │ ├── img_T1446.png │ │ │ │ ├── img_T1447.png │ │ │ │ ├── img_T1448.png │ │ │ │ ├── img_T1449.png │ │ │ │ ├── img_T1450.png │ │ │ │ ├── img_T1451.png │ │ │ │ ├── img_T1452.png │ │ │ │ ├── img_T1453.png │ │ │ │ ├── img_T1454.png │ │ │ │ ├── img_T1455.png │ │ │ │ ├── img_T1456.png │ │ │ │ ├── img_T1457.png │ │ │ │ ├── img_T1458.png │ │ │ │ ├── img_T1459.png │ │ │ │ ├── img_T1460.png │ │ │ │ ├── img_T1461.png │ │ │ │ ├── img_T1462.png │ │ │ │ ├── img_T1463.png │ │ │ │ ├── img_T1464.png │ │ │ │ ├── img_T1465.png │ │ │ │ ├── img_T1466.png │ │ │ │ ├── img_T1467.png │ │ │ │ ├── img_T1468.png │ │ │ │ ├── img_T1469.png │ │ │ │ ├── img_T1470.png │ │ │ │ ├── img_T1471.png │ │ │ │ ├── img_T1472.png │ │ │ │ ├── img_T1473.png │ │ │ │ ├── img_T1474.png │ │ │ │ ├── img_T1475.png │ │ │ │ ├── img_T1476.png │ │ │ │ ├── img_T1477.png │ │ │ │ ├── img_T1478.png │ │ │ │ ├── img_T1479.png │ │ │ │ ├── img_T1480.png │ │ │ │ ├── img_T1481.png │ │ │ │ ├── img_T1482.png │ │ │ │ ├── img_T1483.png │ │ │ │ ├── img_T1484.png │ │ │ │ ├── img_T1485.png │ │ │ │ ├── img_T1486.png │ │ │ │ ├── img_T1487.png │ │ │ │ ├── img_T1488.png │ │ │ │ ├── img_T1489.png │ │ │ │ ├── img_T1490.png │ │ │ │ ├── img_T1491.png │ │ │ │ ├── img_T1492.png │ │ │ │ ├── img_T1493.png │ │ │ │ ├── img_T1494.png │ │ │ │ ├── img_T1495.png │ │ │ │ ├── img_T1496.png │ │ │ │ ├── img_T1497.png │ │ │ │ ├── img_T1498.png │ │ │ │ ├── img_T1499.png │ │ │ │ ├── img_T1500.png │ │ │ │ ├── img_T1501.png │ │ │ │ ├── img_T1502.png │ │ │ │ ├── img_T1503.png │ │ │ │ ├── img_T1504.png │ │ │ │ ├── img_T1505.png │ │ │ │ ├── img_T1506.png │ │ │ │ ├── img_T1507.png │ │ │ │ ├── img_T1508.png │ │ │ │ ├── img_T1509.png │ │ │ │ ├── img_T1510.png │ │ │ │ ├── img_T1511.png │ │ │ │ ├── img_T1512.png │ │ │ │ ├── img_T1513.png │ │ │ │ ├── img_T1514.png │ │ │ │ ├── img_T1515.png │ │ │ │ ├── img_T1516.png │ │ │ │ ├── img_T1517.png │ │ │ │ ├── img_T1518.png │ │ │ │ ├── img_T1519.png │ │ │ │ ├── img_T1520.png │ │ │ │ ├── img_T1521.png │ │ │ │ ├── img_T1522.png │ │ │ │ ├── img_T1523.png │ │ │ │ ├── img_T1524.png │ │ │ │ ├── img_T1525.png │ │ │ │ ├── img_T1526.png │ │ │ │ ├── img_T1527.png │ │ │ │ ├── img_T1528.png │ │ │ │ ├── img_T1529.png │ │ │ │ ├── img_T1530.png │ │ │ │ ├── img_T1531.png │ │ │ │ ├── img_T1532.png │ │ │ │ ├── img_T1533.png │ │ │ │ ├── img_T1534.png │ │ │ │ ├── img_T1535.png │ │ │ │ ├── img_T1536.png │ │ │ │ ├── img_T1537.png │ │ │ │ ├── img_T1538.png │ │ │ │ ├── img_T1539.png │ │ │ │ ├── img_T1540.png │ │ │ │ ├── img_T1541.png │ │ │ │ ├── img_T1542.png │ │ │ │ ├── img_T1543.png │ │ │ │ ├── img_T1544.png │ │ │ │ ├── img_T1545.png │ │ │ │ ├── img_T1546.png │ │ │ │ ├── img_T1547.png │ │ │ │ ├── img_T1548.png │ │ │ │ ├── img_T1549.png │ │ │ │ ├── img_T1550.png │ │ │ │ ├── img_T1551.png │ │ │ │ ├── img_T1552.png │ │ │ │ ├── img_T1553.png │ │ │ │ ├── img_T1554.png │ │ │ │ ├── img_T1555.png │ │ │ │ ├── img_T1556.png │ │ │ │ ├── img_T1557.png │ │ │ │ ├── img_T1558.png │ │ │ │ ├── img_T1559.png │ │ │ │ ├── img_T1560.png │ │ │ │ ├── img_T1561.png │ │ │ │ ├── img_T1562.png │ │ │ │ ├── img_T1563.png │ │ │ │ ├── img_T1564.png │ │ │ │ ├── img_T1565.png │ │ │ │ ├── img_T1566.png │ │ │ │ ├── img_T1567.png │ │ │ │ ├── img_T1568.png │ │ │ │ ├── img_T1569.png │ │ │ │ ├── img_T1570.png │ │ │ │ ├── img_T1571.png │ │ │ │ ├── img_T1572.png │ │ │ │ ├── img_T1573.png │ │ │ │ ├── img_T1574.png │ │ │ │ ├── img_T1575.png │ │ │ │ ├── img_T1576.png │ │ │ │ ├── img_T1577.png │ │ │ │ ├── img_T1578.png │ │ │ │ ├── img_T1579.png │ │ │ │ ├── img_T1580.png │ │ │ │ ├── img_T1581.png │ │ │ │ ├── img_T1582.png │ │ │ │ ├── img_T1583.png │ │ │ │ ├── img_T1584.png │ │ │ │ ├── img_T1585.png │ │ │ │ ├── img_T1586.png │ │ │ │ ├── img_T1587.png │ │ │ │ ├── img_T1588.png │ │ │ │ ├── img_T1589.png │ │ │ │ ├── img_T1590.png │ │ │ │ ├── img_T1591.png │ │ │ │ ├── img_T1592.png │ │ │ │ ├── img_T1593.png │ │ │ │ ├── img_T1594.png │ │ │ │ ├── img_T1595.png │ │ │ │ ├── img_T1596.png │ │ │ │ ├── img_T1597.png │ │ │ │ ├── img_T1598.png │ │ │ │ ├── img_T1599.png │ │ │ │ ├── img_T1600.png │ │ │ │ ├── img_T1601.png │ │ │ │ ├── img_T1602.png │ │ │ │ ├── img_T1603.png │ │ │ │ ├── img_T1604.png │ │ │ │ ├── img_T1605.png │ │ │ │ ├── img_T1606.png │ │ │ │ ├── img_T1607.png │ │ │ │ ├── img_T1608.png │ │ │ │ ├── img_T1609.png │ │ │ │ ├── img_T1610.png │ │ │ │ ├── img_T1611.png │ │ │ │ ├── img_T1612.png │ │ │ │ ├── img_T1613.png │ │ │ │ ├── img_T1614.png │ │ │ │ ├── img_T1615.png │ │ │ │ ├── img_T1616.png │ │ │ │ ├── img_T1617.png │ │ │ │ ├── img_T1618.png │ │ │ │ ├── img_T1619.png │ │ │ │ ├── img_T1620.png │ │ │ │ ├── img_T1621.png │ │ │ │ ├── img_T1622.png │ │ │ │ ├── img_T1623.png │ │ │ │ ├── img_T1624.png │ │ │ │ ├── img_T1625.png │ │ │ │ ├── img_T1626.png │ │ │ │ ├── img_T1627.png │ │ │ │ ├── img_T1628.png │ │ │ │ ├── img_T1629.png │ │ │ │ ├── img_T1630.png │ │ │ │ ├── img_T1631.png │ │ │ │ ├── img_T1632.png │ │ │ │ ├── img_T1633.png │ │ │ │ ├── img_T1634.png │ │ │ │ ├── img_T1635.png │ │ │ │ ├── img_T1636.png │ │ │ │ ├── img_T1637.png │ │ │ │ ├── img_T1638.png │ │ │ │ ├── img_T1639.png │ │ │ │ ├── img_T1640.png │ │ │ │ ├── img_T1641.png │ │ │ │ ├── img_T1642.png │ │ │ │ ├── img_T1643.png │ │ │ │ ├── img_T1644.png │ │ │ │ ├── img_T1645.png │ │ │ │ ├── img_T1646.png │ │ │ │ ├── img_T1647.png │ │ │ │ ├── img_T1648.png │ │ │ │ ├── img_T1649.png │ │ │ │ ├── img_T1650.png │ │ │ │ ├── img_T1651.png │ │ │ │ ├── img_T1652.png │ │ │ │ ├── img_T1653.png │ │ │ │ ├── img_T1654.png │ │ │ │ ├── img_T1655.png │ │ │ │ ├── img_T1656.png │ │ │ │ ├── img_T1657.png │ │ │ │ ├── img_T1658.png │ │ │ │ ├── img_T1659.png │ │ │ │ ├── img_T1660.png │ │ │ │ ├── img_T1661.png │ │ │ │ ├── img_T1662.png │ │ │ │ ├── img_T1663.png │ │ │ │ ├── img_T1664.png │ │ │ │ ├── img_T1665.png │ │ │ │ ├── img_T1666.png │ │ │ │ ├── img_T1667.png │ │ │ │ ├── img_T1668.png │ │ │ │ ├── img_T1669.png │ │ │ │ ├── img_T1670.png │ │ │ │ ├── img_T1671.png │ │ │ │ ├── img_T1672.png │ │ │ │ ├── img_T1673.png │ │ │ │ ├── img_T1674.png │ │ │ │ ├── img_T1675.png │ │ │ │ ├── img_T1676.png │ │ │ │ ├── img_T1677.png │ │ │ │ ├── img_T1678.png │ │ │ │ ├── img_T1679.png │ │ │ │ ├── img_T1680.png │ │ │ │ ├── img_T1681.png │ │ │ │ ├── img_T1682.png │ │ │ │ ├── img_T1683.png │ │ │ │ ├── img_T1684.png │ │ │ │ ├── img_T1685.png │ │ │ │ ├── img_T1686.png │ │ │ │ ├── img_T1687.png │ │ │ │ ├── img_T1688.png │ │ │ │ ├── img_T1689.png │ │ │ │ ├── img_T1690.png │ │ │ │ ├── img_T1691.png │ │ │ │ ├── img_T1692.png │ │ │ │ ├── img_T1693.png │ │ │ │ ├── img_T1694.png │ │ │ │ ├── img_T1695.png │ │ │ │ ├── img_T1696.png │ │ │ │ ├── img_T1697.png │ │ │ │ ├── img_T1698.png │ │ │ │ ├── img_T1699.png │ │ │ │ ├── img_T1700.png │ │ │ │ ├── img_T1701.png │ │ │ │ ├── img_T1702.png │ │ │ │ ├── img_T1703.png │ │ │ │ ├── img_T1704.png │ │ │ │ ├── img_T1705.png │ │ │ │ ├── img_T1706.png │ │ │ │ ├── img_T1707.png │ │ │ │ ├── img_T1708.png │ │ │ │ ├── img_T1709.png │ │ │ │ ├── img_T1710.png │ │ │ │ ├── img_T1711.png │ │ │ │ ├── img_T1712.png │ │ │ │ ├── img_T1713.png │ │ │ │ ├── img_T1714.png │ │ │ │ ├── img_T1715.png │ │ │ │ ├── img_T1716.png │ │ │ │ ├── img_T1717.png │ │ │ │ ├── img_T1718.png │ │ │ │ ├── img_T1719.png │ │ │ │ ├── img_T1720.png │ │ │ │ ├── img_T1721.png │ │ │ │ ├── img_T1722.png │ │ │ │ ├── img_T1723.png │ │ │ │ ├── img_T1724.png │ │ │ │ ├── img_T1725.png │ │ │ │ ├── img_T1726.png │ │ │ │ ├── img_T1727.png │ │ │ │ ├── img_T1728.png │ │ │ │ ├── img_T1729.png │ │ │ │ ├── img_T1730.png │ │ │ │ ├── img_T1731.png │ │ │ │ ├── img_T1732.png │ │ │ │ ├── img_T1733.png │ │ │ │ ├── img_T1734.png │ │ │ │ ├── img_T1735.png │ │ │ │ ├── img_T1736.png │ │ │ │ ├── img_T1737.png │ │ │ │ ├── img_T1738.png │ │ │ │ ├── img_T1739.png │ │ │ │ ├── img_T1740.png │ │ │ │ ├── img_T1741.png │ │ │ │ ├── img_T1742.png │ │ │ │ ├── img_T1743.png │ │ │ │ ├── img_T1744.png │ │ │ │ ├── img_T1745.png │ │ │ │ ├── img_T1746.png │ │ │ │ ├── img_T1747.png │ │ │ │ ├── img_T1748.png │ │ │ │ ├── img_T1749.png │ │ │ │ ├── img_T1750.png │ │ │ │ ├── img_T1751.png │ │ │ │ ├── img_T1752.png │ │ │ │ ├── img_T1753.png │ │ │ │ ├── img_T1754.png │ │ │ │ ├── img_T1755.png │ │ │ │ ├── img_T1756.png │ │ │ │ ├── img_T1757.png │ │ │ │ ├── img_T1758.png │ │ │ │ ├── img_T1759.png │ │ │ │ ├── img_T1760.png │ │ │ │ ├── img_T1761.png │ │ │ │ ├── img_T1762.png │ │ │ │ ├── img_T1763.png │ │ │ │ ├── img_T1764.png │ │ │ │ ├── img_T1765.png │ │ │ │ ├── img_T1766.png │ │ │ │ ├── img_T1767.png │ │ │ │ ├── img_T1768.png │ │ │ │ ├── img_T1769.png │ │ │ │ ├── img_T1770.png │ │ │ │ ├── img_T1771.png │ │ │ │ ├── img_T1772.png │ │ │ │ ├── img_T1773.png │ │ │ │ ├── img_T1774.png │ │ │ │ ├── img_T1775.png │ │ │ │ ├── img_T1776.png │ │ │ │ ├── img_T1777.png │ │ │ │ ├── img_T1778.png │ │ │ │ ├── img_T1779.png │ │ │ │ ├── img_T1780.png │ │ │ │ ├── img_T1781.png │ │ │ │ ├── img_T1782.png │ │ │ │ ├── img_T1783.png │ │ │ │ ├── img_T1784.png │ │ │ │ ├── img_T1785.png │ │ │ │ ├── img_T1786.png │ │ │ │ ├── img_T1787.png │ │ │ │ ├── img_T1788.png │ │ │ │ ├── img_T1789.png │ │ │ │ ├── img_T1790.png │ │ │ │ ├── img_T1791.png │ │ │ │ ├── img_T1792.png │ │ │ │ ├── img_T1793.png │ │ │ │ ├── img_T1794.png │ │ │ │ ├── img_T1795.png │ │ │ │ ├── img_T1796.png │ │ │ │ ├── img_T1797.png │ │ │ │ ├── img_T1798.png │ │ │ │ ├── img_T1799.png │ │ │ │ ├── img_T1800.png │ │ │ │ ├── img_T1801.png │ │ │ │ ├── img_T1802.png │ │ │ │ ├── img_T1803.png │ │ │ │ ├── img_T1804.png │ │ │ │ ├── img_T1805.png │ │ │ │ ├── img_T1806.png │ │ │ │ ├── img_T1807.png │ │ │ │ ├── img_T1808.png │ │ │ │ ├── img_T1809.png │ │ │ │ ├── img_T1810.png │ │ │ │ ├── img_T1811.png │ │ │ │ ├── img_T1812.png │ │ │ │ ├── img_T1813.png │ │ │ │ ├── img_T1814.png │ │ │ │ ├── img_T1815.png │ │ │ │ ├── img_T1816.png │ │ │ │ ├── img_T1817.png │ │ │ │ ├── img_T1818.png │ │ │ │ ├── img_T1819.png │ │ │ │ ├── img_T1820.png │ │ │ │ ├── img_T1821.png │ │ │ │ ├── img_T1822.png │ │ │ │ ├── img_T1823.png │ │ │ │ ├── img_T1824.png │ │ │ │ ├── img_T1825.png │ │ │ │ ├── img_T1826.png │ │ │ │ ├── img_T1827.png │ │ │ │ ├── img_T1828.png │ │ │ │ ├── img_T1829.png │ │ │ │ ├── img_T1830.png │ │ │ │ ├── img_T1831.png │ │ │ │ ├── img_T1832.png │ │ │ │ ├── img_T1833.png │ │ │ │ ├── img_T1834.png │ │ │ │ ├── img_T1835.png │ │ │ │ ├── img_T1836.png │ │ │ │ ├── img_T1837.png │ │ │ │ ├── img_T1838.png │ │ │ │ ├── img_T1839.png │ │ │ │ ├── img_T1840.png │ │ │ │ ├── img_T1841.png │ │ │ │ ├── img_T1842.png │ │ │ │ ├── img_T1843.png │ │ │ │ ├── img_T1844.png │ │ │ │ ├── img_T1845.png │ │ │ │ ├── img_T1846.png │ │ │ │ ├── img_T1847.png │ │ │ │ ├── img_T1848.png │ │ │ │ ├── img_T1849.png │ │ │ │ ├── img_T1850.png │ │ │ │ ├── img_T1851.png │ │ │ │ ├── img_T1852.png │ │ │ │ ├── img_T1853.png │ │ │ │ ├── img_T1854.png │ │ │ │ ├── img_T1855.png │ │ │ │ ├── img_T1856.png │ │ │ │ ├── img_T1857.png │ │ │ │ ├── img_T1858.png │ │ │ │ ├── img_T1859.png │ │ │ │ ├── img_T1860.png │ │ │ │ ├── img_T1861.png │ │ │ │ ├── img_T1862.png │ │ │ │ ├── img_T1863.png │ │ │ │ ├── img_T1864.png │ │ │ │ ├── img_T1865.png │ │ │ │ ├── img_T1866.png │ │ │ │ ├── img_T1867.png │ │ │ │ ├── img_T1868.png │ │ │ │ ├── img_T1869.png │ │ │ │ ├── img_T1870.png │ │ │ │ ├── img_T1871.png │ │ │ │ ├── img_T1872.png │ │ │ │ ├── img_T1873.png │ │ │ │ ├── img_T1874.png │ │ │ │ ├── img_T1875.png │ │ │ │ ├── img_T1876.png │ │ │ │ ├── img_T1877.png │ │ │ │ ├── img_T1878.png │ │ │ │ ├── img_T1879.png │ │ │ │ ├── img_T1880.png │ │ │ │ ├── img_T1881.png │ │ │ │ ├── img_T1882.png │ │ │ │ ├── img_T1883.png │ │ │ │ ├── img_T1884.png │ │ │ │ ├── img_T1885.png │ │ │ │ ├── img_T1886.png │ │ │ │ ├── img_T1887.png │ │ │ │ ├── img_T1888.png │ │ │ │ ├── img_T1889.png │ │ │ │ ├── img_T1890.png │ │ │ │ ├── img_T1891.png │ │ │ │ ├── img_T1892.png │ │ │ │ ├── img_T1893.png │ │ │ │ ├── img_T1894.png │ │ │ │ ├── img_T1895.png │ │ │ │ ├── img_T1896.png │ │ │ │ ├── img_T1897.png │ │ │ │ ├── img_T1898.png │ │ │ │ ├── img_T1899.png │ │ │ │ ├── img_T1900.png │ │ │ │ ├── img_T1901.png │ │ │ │ ├── img_T1902.png │ │ │ │ ├── img_T1903.png │ │ │ │ ├── img_T1904.png │ │ │ │ ├── img_T1905.png │ │ │ │ ├── img_T1906.png │ │ │ │ ├── img_T1907.png │ │ │ │ ├── img_T1908.png │ │ │ │ ├── img_T1909.png │ │ │ │ ├── img_T1910.png │ │ │ │ ├── img_T1911.png │ │ │ │ ├── img_T1912.png │ │ │ │ ├── img_T1913.png │ │ │ │ ├── img_T1914.png │ │ │ │ ├── img_T1915.png │ │ │ │ ├── img_T1916.png │ │ │ │ ├── img_T1917.png │ │ │ │ ├── img_T1918.png │ │ │ │ ├── img_T1919.png │ │ │ │ ├── img_T1920.png │ │ │ │ ├── img_T1921.png │ │ │ │ ├── img_T1922.png │ │ │ │ ├── img_T1923.png │ │ │ │ ├── img_T1924.png │ │ │ │ ├── img_T1925.png │ │ │ │ ├── img_T1926.png │ │ │ │ ├── img_T1927.png │ │ │ │ ├── img_T1928.png │ │ │ │ ├── img_T1929.png │ │ │ │ ├── img_T1930.png │ │ │ │ ├── img_T1931.png │ │ │ │ ├── img_T1932.png │ │ │ │ ├── img_T1933.png │ │ │ │ ├── img_T1934.png │ │ │ │ ├── img_T1935.png │ │ │ │ ├── img_T1936.png │ │ │ │ ├── img_T1937.png │ │ │ │ ├── img_T1938.png │ │ │ │ ├── img_T1939.png │ │ │ │ ├── img_T1940.png │ │ │ │ ├── img_T1941.png │ │ │ │ ├── img_T1942.png │ │ │ │ ├── img_T1943.png │ │ │ │ ├── img_T1944.png │ │ │ │ ├── img_T1945.png │ │ │ │ ├── img_T1946.png │ │ │ │ ├── img_T1947.png │ │ │ │ ├── img_T1948.png │ │ │ │ ├── img_T1949.png │ │ │ │ ├── img_T1950.png │ │ │ │ ├── img_T1951.png │ │ │ │ ├── img_T1952.png │ │ │ │ ├── img_T1953.png │ │ │ │ ├── img_T1954.png │ │ │ │ ├── img_T1955.png │ │ │ │ ├── img_T1956.png │ │ │ │ ├── img_T1957.png │ │ │ │ ├── img_T1958.png │ │ │ │ ├── img_T1959.png │ │ │ │ ├── img_T1960.png │ │ │ │ ├── img_T1961.png │ │ │ │ ├── img_T1962.png │ │ │ │ ├── img_T1963.png │ │ │ │ ├── img_T1964.png │ │ │ │ ├── img_T1965.png │ │ │ │ ├── img_T1966.png │ │ │ │ ├── img_T1967.png │ │ │ │ ├── img_T1968.png │ │ │ │ ├── img_T1969.png │ │ │ │ ├── img_T1970.png │ │ │ │ ├── img_T1971.png │ │ │ │ ├── img_T1972.png │ │ │ │ ├── img_T1973.png │ │ │ │ ├── img_T1974.png │ │ │ │ ├── img_T1975.png │ │ │ │ ├── img_T1976.png │ │ │ │ ├── img_T1977.png │ │ │ │ ├── img_T1978.png │ │ │ │ ├── img_T1979.png │ │ │ │ ├── img_T1980.png │ │ │ │ ├── img_T1981.png │ │ │ │ ├── img_T1982.png │ │ │ │ ├── img_T1983.png │ │ │ │ ├── img_T1984.png │ │ │ │ ├── img_T1985.png │ │ │ │ ├── img_T1986.png │ │ │ │ ├── img_T1987.png │ │ │ │ ├── img_T1988.png │ │ │ │ ├── img_T1989.png │ │ │ │ ├── img_T1990.png │ │ │ │ ├── img_T1991.png │ │ │ │ ├── img_T1992.png │ │ │ │ ├── img_T1993.png │ │ │ │ ├── img_T1994.png │ │ │ │ ├── img_T1995.png │ │ │ │ ├── img_T1996.png │ │ │ │ ├── img_T1997.png │ │ │ │ ├── img_T1998.png │ │ │ │ ├── img_T1999.png │ │ │ │ ├── img_T2000.png │ │ │ │ ├── img_T2001.png │ │ │ │ ├── img_T2002.png │ │ │ │ ├── img_T2003.png │ │ │ │ ├── img_T2004.png │ │ │ │ ├── img_T2005.png │ │ │ │ ├── img_T2006.png │ │ │ │ ├── img_T2007.png │ │ │ │ ├── img_T2008.png │ │ │ │ ├── img_T2009.png │ │ │ │ ├── img_T2010.png │ │ │ │ ├── img_T2011.png │ │ │ │ ├── img_T2012.png │ │ │ │ ├── img_T2013.png │ │ │ │ ├── img_T2014.png │ │ │ │ ├── img_T2015.png │ │ │ │ ├── img_T2016.png │ │ │ │ ├── img_T2017.png │ │ │ │ ├── img_T2018.png │ │ │ │ ├── img_T2019.png │ │ │ │ ├── img_T2020.png │ │ │ │ ├── img_T2021.png │ │ │ │ ├── img_T2022.png │ │ │ │ ├── img_T2023.png │ │ │ │ ├── img_T2024.png │ │ │ │ ├── img_T2025.png │ │ │ │ ├── img_T2026.png │ │ │ │ ├── img_T2027.png │ │ │ │ ├── img_T2028.png │ │ │ │ ├── img_T2029.png │ │ │ │ ├── img_T2030.png │ │ │ │ ├── img_T2031.png │ │ │ │ ├── img_T2032.png │ │ │ │ ├── img_T2033.png │ │ │ │ ├── img_T2034.png │ │ │ │ ├── img_T2035.png │ │ │ │ ├── img_T2036.png │ │ │ │ ├── img_T2037.png │ │ │ │ ├── img_T2038.png │ │ │ │ ├── img_T2039.png │ │ │ │ ├── img_T2040.png │ │ │ │ ├── img_T2041.png │ │ │ │ ├── img_T2042.png │ │ │ │ ├── img_T2043.png │ │ │ │ ├── img_T2044.png │ │ │ │ ├── img_T2045.png │ │ │ │ ├── img_T2046.png │ │ │ │ ├── img_T2047.png │ │ │ │ ├── img_T2048.png │ │ │ │ ├── img_T2049.png │ │ │ │ ├── img_T2050.png │ │ │ │ ├── img_T2051.png │ │ │ │ ├── img_T2052.png │ │ │ │ ├── img_T2053.png │ │ │ │ ├── img_T2054.png │ │ │ │ ├── img_T2055.png │ │ │ │ ├── img_T2056.png │ │ │ │ ├── img_T2057.png │ │ │ │ ├── img_T2058.png │ │ │ │ ├── img_T2059.png │ │ │ │ ├── img_T2060.png │ │ │ │ ├── img_T2061.png │ │ │ │ ├── img_T2062.png │ │ │ │ ├── img_T2063.png │ │ │ │ ├── img_T2064.png │ │ │ │ ├── img_T2065.png │ │ │ │ ├── img_T2066.png │ │ │ │ ├── img_T2067.png │ │ │ │ ├── img_T2068.png │ │ │ │ ├── img_T2069.png │ │ │ │ ├── img_T2070.png │ │ │ │ ├── img_T2071.png │ │ │ │ ├── img_T2072.png │ │ │ │ ├── img_T2073.png │ │ │ │ ├── img_T2074.png │ │ │ │ ├── img_T2075.png │ │ │ │ ├── img_T2076.png │ │ │ │ ├── img_T2077.png │ │ │ │ ├── img_T2078.png │ │ │ │ ├── img_T2079.png │ │ │ │ ├── img_T2080.png │ │ │ │ ├── img_T2081.png │ │ │ │ ├── img_T2082.png │ │ │ │ ├── img_T2083.png │ │ │ │ ├── img_T2084.png │ │ │ │ ├── img_T2085.png │ │ │ │ ├── img_T2086.png │ │ │ │ ├── img_T2087.png │ │ │ │ ├── img_T2088.png │ │ │ │ ├── img_T2089.png │ │ │ │ ├── img_T2090.png │ │ │ │ ├── img_T2091.png │ │ │ │ ├── img_T2092.png │ │ │ │ ├── img_T2093.png │ │ │ │ ├── img_T2094.png │ │ │ │ ├── img_T2095.png │ │ │ │ ├── img_T2096.png │ │ │ │ ├── img_T2097.png │ │ │ │ ├── img_T2098.png │ │ │ │ ├── img_T2099.png │ │ │ │ ├── img_T2100.png │ │ │ │ ├── img_T2101.png │ │ │ │ ├── img_T2102.png │ │ │ │ ├── img_T2103.png │ │ │ │ ├── img_T2104.png │ │ │ │ ├── img_T2105.png │ │ │ │ ├── img_T2106.png │ │ │ │ ├── img_T2107.png │ │ │ │ ├── img_T2108.png │ │ │ │ ├── img_T2109.png │ │ │ │ ├── img_T2110.png │ │ │ │ ├── img_T2111.png │ │ │ │ ├── img_T2112.png │ │ │ │ ├── img_T2113.png │ │ │ │ ├── img_T2114.png │ │ │ │ ├── img_T2115.png │ │ │ │ ├── img_T2116.png │ │ │ │ ├── img_T2117.png │ │ │ │ ├── img_T2118.png │ │ │ │ ├── img_T2119.png │ │ │ │ ├── img_T2120.png │ │ │ │ ├── img_T2121.png │ │ │ │ ├── img_T2122.png │ │ │ │ ├── img_T2123.png │ │ │ │ ├── img_T2124.png │ │ │ │ ├── img_T2125.png │ │ │ │ ├── img_T2126.png │ │ │ │ ├── img_T2127.png │ │ │ │ ├── img_T2128.png │ │ │ │ ├── img_T2129.png │ │ │ │ ├── img_T2130.png │ │ │ │ ├── img_T2131.png │ │ │ │ ├── img_T2132.png │ │ │ │ ├── img_T2133.png │ │ │ │ ├── img_T2134.png │ │ │ │ ├── img_T2135.png │ │ │ │ ├── img_T2136.png │ │ │ │ ├── img_T2137.png │ │ │ │ ├── img_T2138.png │ │ │ │ ├── img_T2139.png │ │ │ │ ├── img_T2140.png │ │ │ │ ├── img_T2141.png │ │ │ │ ├── img_T2142.png │ │ │ │ ├── img_T2143.png │ │ │ │ ├── img_T2144.png │ │ │ │ ├── img_T2145.png │ │ │ │ ├── img_T2146.png │ │ │ │ ├── img_T2147.png │ │ │ │ ├── img_T2148.png │ │ │ │ ├── img_T2149.png │ │ │ │ ├── img_T2150.png │ │ │ │ ├── img_T2151.png │ │ │ │ ├── img_T2152.png │ │ │ │ ├── img_T2153.png │ │ │ │ ├── img_T2154.png │ │ │ │ ├── img_T2155.png │ │ │ │ ├── img_T2156.png │ │ │ │ ├── img_T2157.png │ │ │ │ ├── img_T2158.png │ │ │ │ ├── img_T2159.png │ │ │ │ ├── img_T2160.png │ │ │ │ ├── img_T2161.png │ │ │ │ ├── img_T2162.png │ │ │ │ ├── img_T2163.png │ │ │ │ ├── img_T2164.png │ │ │ │ ├── img_T2165.png │ │ │ │ ├── img_T2166.png │ │ │ │ ├── img_T2167.png │ │ │ │ ├── img_T2168.png │ │ │ │ ├── img_T2169.png │ │ │ │ ├── img_T2170.png │ │ │ │ ├── img_T2171.png │ │ │ │ ├── img_T2172.png │ │ │ │ ├── img_T2173.png │ │ │ │ ├── img_T2174.png │ │ │ │ ├── img_T2175.png │ │ │ │ ├── img_T2176.png │ │ │ │ ├── img_T2177.png │ │ │ │ ├── img_T2178.png │ │ │ │ ├── img_T2179.png │ │ │ │ ├── img_T2180.png │ │ │ │ ├── img_T2181.png │ │ │ │ ├── img_T2182.png │ │ │ │ ├── img_T2183.png │ │ │ │ ├── img_T2184.png │ │ │ │ ├── img_T2185.png │ │ │ │ ├── img_T2186.png │ │ │ │ ├── img_T2187.png │ │ │ │ ├── img_T2188.png │ │ │ │ ├── img_T2189.png │ │ │ │ ├── img_T2190.png │ │ │ │ ├── img_T2191.png │ │ │ │ ├── img_T2192.png │ │ │ │ ├── img_T2193.png │ │ │ │ ├── img_T2194.png │ │ │ │ ├── img_T2195.png │ │ │ │ ├── img_T2196.png │ │ │ │ ├── img_T2197.png │ │ │ │ ├── img_T2198.png │ │ │ │ ├── img_T2199.png │ │ │ │ ├── img_T2200.png │ │ │ │ ├── img_T2201.png │ │ │ │ ├── img_T2202.png │ │ │ │ ├── img_T2203.png │ │ │ │ ├── img_T2204.png │ │ │ │ ├── img_T2205.png │ │ │ │ ├── img_T2206.png │ │ │ │ ├── img_T2207.png │ │ │ │ ├── img_T2208.png │ │ │ │ ├── img_T2209.png │ │ │ │ ├── img_T2210.png │ │ │ │ ├── img_T2211.png │ │ │ │ ├── img_T2212.png │ │ │ │ ├── img_T2213.png │ │ │ │ ├── img_T2214.png │ │ │ │ ├── img_T2215.png │ │ │ │ ├── img_T2216.png │ │ │ │ ├── img_T2217.png │ │ │ │ ├── img_T2218.png │ │ │ │ ├── img_T2219.png │ │ │ │ ├── img_T2220.png │ │ │ │ ├── img_T2221.png │ │ │ │ ├── img_T2222.png │ │ │ │ ├── img_T2223.png │ │ │ │ ├── img_T2224.png │ │ │ │ ├── img_T2225.png │ │ │ │ ├── img_T2226.png │ │ │ │ ├── img_T2227.png │ │ │ │ ├── img_T2228.png │ │ │ │ ├── img_T2229.png │ │ │ │ ├── img_T2230.png │ │ │ │ ├── img_T2231.png │ │ │ │ ├── img_T2232.png │ │ │ │ ├── img_T2233.png │ │ │ │ ├── img_T2234.png │ │ │ │ ├── img_T2235.png │ │ │ │ ├── img_T2236.png │ │ │ │ ├── img_T2237.png │ │ │ │ ├── img_T2238.png │ │ │ │ ├── img_T2239.png │ │ │ │ ├── img_T2240.png │ │ │ │ ├── img_T2241.png │ │ │ │ ├── img_T2242.png │ │ │ │ ├── img_T2243.png │ │ │ │ ├── img_T2244.png │ │ │ │ ├── img_T2245.png │ │ │ │ ├── img_T2246.png │ │ │ │ ├── img_T2247.png │ │ │ │ ├── img_T2248.png │ │ │ │ ├── img_T2249.png │ │ │ │ ├── img_T2250.png │ │ │ │ ├── img_T2251.png │ │ │ │ ├── img_T2252.png │ │ │ │ ├── img_T2253.png │ │ │ │ ├── img_T2254.png │ │ │ │ ├── img_T2255.png │ │ │ │ ├── img_T2256.png │ │ │ │ ├── img_T2257.png │ │ │ │ ├── img_T2258.png │ │ │ │ ├── img_T2259.png │ │ │ │ ├── img_T2260.png │ │ │ │ ├── img_T2261.png │ │ │ │ ├── img_T2262.png │ │ │ │ ├── img_T2263.png │ │ │ │ ├── img_T2264.png │ │ │ │ ├── img_T2265.png │ │ │ │ ├── img_T2266.png │ │ │ │ ├── img_T2267.png │ │ │ │ ├── img_T2268.png │ │ │ │ ├── img_T2269.png │ │ │ │ ├── img_T2270.png │ │ │ │ ├── img_T2271.png │ │ │ │ ├── img_T2272.png │ │ │ │ ├── img_T2273.png │ │ │ │ ├── img_T2274.png │ │ │ │ ├── img_T2275.png │ │ │ │ ├── img_T2276.png │ │ │ │ ├── img_T2277.png │ │ │ │ ├── img_T2278.png │ │ │ │ ├── img_T2279.png │ │ │ │ ├── img_T2280.png │ │ │ │ ├── img_T2281.png │ │ │ │ ├── img_T2282.png │ │ │ │ ├── img_T2283.png │ │ │ │ ├── img_T2284.png │ │ │ │ ├── img_T2285.png │ │ │ │ ├── img_T2286.png │ │ │ │ ├── img_T2287.png │ │ │ │ ├── img_T2288.png │ │ │ │ ├── img_T2289.png │ │ │ │ ├── img_T2290.png │ │ │ │ ├── img_T2291.png │ │ │ │ ├── img_T2292.png │ │ │ │ ├── img_T2293.png │ │ │ │ ├── img_T2294.png │ │ │ │ ├── img_T2295.png │ │ │ │ ├── img_T2296.png │ │ │ │ ├── img_T2297.png │ │ │ │ ├── img_T2298.png │ │ │ │ ├── img_T2299.png │ │ │ │ ├── img_T2300.png │ │ │ │ ├── img_T2301.png │ │ │ │ ├── img_T2302.png │ │ │ │ ├── img_T2303.png │ │ │ │ ├── img_T2304.png │ │ │ │ ├── img_T2305.png │ │ │ │ ├── img_T2306.png │ │ │ │ ├── img_T2307.png │ │ │ │ ├── img_T2308.png │ │ │ │ ├── img_T2309.png │ │ │ │ ├── img_T2310.png │ │ │ │ ├── img_T2311.png │ │ │ │ ├── img_T2312.png │ │ │ │ ├── img_T2313.png │ │ │ │ ├── img_T2314.png │ │ │ │ ├── img_T2315.png │ │ │ │ ├── img_T2316.png │ │ │ │ ├── img_T2317.png │ │ │ │ ├── img_T2318.png │ │ │ │ ├── img_T2319.png │ │ │ │ ├── img_T2320.png │ │ │ │ ├── img_T2321.png │ │ │ │ ├── img_T2322.png │ │ │ │ ├── img_T2323.png │ │ │ │ ├── img_T2324.png │ │ │ │ ├── img_T2325.png │ │ │ │ ├── img_T2326.png │ │ │ │ ├── img_T2327.png │ │ │ │ ├── img_T2328.png │ │ │ │ ├── img_T2329.png │ │ │ │ ├── img_T2330.png │ │ │ │ ├── img_T2331.png │ │ │ │ ├── img_T2332.png │ │ │ │ ├── img_T2333.png │ │ │ │ ├── img_T2334.png │ │ │ │ ├── img_T2335.png │ │ │ │ ├── img_T2336.png │ │ │ │ ├── img_T2337.png │ │ │ │ ├── img_T2338.png │ │ │ │ ├── img_T2339.png │ │ │ │ ├── img_T2340.png │ │ │ │ ├── img_T2341.png │ │ │ │ ├── img_T2342.png │ │ │ │ ├── img_T2343.png │ │ │ │ ├── img_T2344.png │ │ │ │ ├── img_T2345.png │ │ │ │ ├── img_T2346.png │ │ │ │ ├── img_T2347.png │ │ │ │ ├── img_T2348.png │ │ │ │ ├── img_T2349.png │ │ │ │ ├── img_T2350.png │ │ │ │ ├── img_T2351.png │ │ │ │ ├── img_T2352.png │ │ │ │ ├── img_T2353.png │ │ │ │ ├── img_T2354.png │ │ │ │ ├── img_T2355.png │ │ │ │ ├── img_T2356.png │ │ │ │ ├── img_T2357.png │ │ │ │ ├── img_T2358.png │ │ │ │ ├── img_T2359.png │ │ │ │ ├── img_T2360.png │ │ │ │ ├── img_T2361.png │ │ │ │ ├── img_T2362.png │ │ │ │ ├── img_T2363.png │ │ │ │ ├── img_T2364.png │ │ │ │ ├── img_T2365.png │ │ │ │ ├── img_T2366.png │ │ │ │ ├── img_T2367.png │ │ │ │ ├── img_T2368.png │ │ │ │ ├── img_T2369.png │ │ │ │ ├── img_T2370.png │ │ │ │ ├── img_T2371.png │ │ │ │ ├── img_T2372.png │ │ │ │ ├── img_T2373.png │ │ │ │ ├── img_T2374.png │ │ │ │ ├── img_T2375.png │ │ │ │ ├── img_T2376.png │ │ │ │ ├── img_T2377.png │ │ │ │ ├── img_T2378.png │ │ │ │ ├── img_T2379.png │ │ │ │ ├── img_T2380.png │ │ │ │ ├── img_T2381.png │ │ │ │ ├── img_T2382.png │ │ │ │ ├── img_T2383.png │ │ │ │ ├── img_T2384.png │ │ │ │ ├── img_T2385.png │ │ │ │ ├── img_T2386.png │ │ │ │ ├── img_T2387.png │ │ │ │ ├── img_T2388.png │ │ │ │ ├── img_T2389.png │ │ │ │ ├── img_T2390.png │ │ │ │ ├── img_T2391.png │ │ │ │ ├── img_T2392.png │ │ │ │ ├── img_T2393.png │ │ │ │ ├── img_T2394.png │ │ │ │ ├── img_T2395.png │ │ │ │ ├── img_T2396.png │ │ │ │ ├── img_T2397.png │ │ │ │ ├── img_T2398.png │ │ │ │ ├── img_T2399.png │ │ │ │ ├── img_T2400.png │ │ │ │ ├── img_T2401.png │ │ │ │ ├── img_T2402.png │ │ │ │ ├── img_T2403.png │ │ │ │ ├── img_T2404.png │ │ │ │ ├── img_T2405.png │ │ │ │ ├── img_T2406.png │ │ │ │ ├── img_T2407.png │ │ │ │ ├── img_T2408.png │ │ │ │ ├── img_T2409.png │ │ │ │ ├── img_T2410.png │ │ │ │ ├── img_T2411.png │ │ │ │ ├── img_T2412.png │ │ │ │ ├── img_T2413.png │ │ │ │ ├── img_T2414.png │ │ │ │ ├── img_T2415.png │ │ │ │ ├── img_T2416.png │ │ │ │ ├── img_T2417.png │ │ │ │ ├── img_T2418.png │ │ │ │ ├── img_T2419.png │ │ │ │ ├── img_T2420.png │ │ │ │ ├── img_T2421.png │ │ │ │ ├── img_T2422.png │ │ │ │ ├── img_T2423.png │ │ │ │ ├── img_T2424.png │ │ │ │ ├── img_T2425.png │ │ │ │ ├── img_T2426.png │ │ │ │ ├── img_T2427.png │ │ │ │ ├── img_T2428.png │ │ │ │ ├── img_T2429.png │ │ │ │ ├── img_T2430.png │ │ │ │ ├── img_T2431.png │ │ │ │ ├── img_T2432.png │ │ │ │ ├── img_T2433.png │ │ │ │ ├── img_T2434.png │ │ │ │ ├── img_T2435.png │ │ │ │ ├── img_T2436.png │ │ │ │ ├── img_T2437.png │ │ │ │ ├── img_T2438.png │ │ │ │ ├── img_T2439.png │ │ │ │ ├── img_T2440.png │ │ │ │ ├── img_T2441.png │ │ │ │ ├── img_T2442.png │ │ │ │ ├── img_T2443.png │ │ │ │ ├── img_T2444.png │ │ │ │ ├── img_T2445.png │ │ │ │ ├── img_T2446.png │ │ │ │ ├── img_T2447.png │ │ │ │ ├── img_T2448.png │ │ │ │ ├── img_T2449.png │ │ │ │ ├── img_T2450.png │ │ │ │ ├── img_T2451.png │ │ │ │ ├── img_T2452.png │ │ │ │ ├── img_T2453.png │ │ │ │ ├── img_T2454.png │ │ │ │ ├── img_T2455.png │ │ │ │ ├── img_T2456.png │ │ │ │ ├── img_T2457.png │ │ │ │ ├── img_T2458.png │ │ │ │ ├── img_T2459.png │ │ │ │ ├── img_T2460.png │ │ │ │ ├── img_T2461.png │ │ │ │ ├── img_T2462.png │ │ │ │ ├── img_T2463.png │ │ │ │ ├── img_T2464.png │ │ │ │ ├── img_T2465.png │ │ │ │ ├── img_T2466.png │ │ │ │ ├── img_T2467.png │ │ │ │ ├── img_T2468.png │ │ │ │ ├── img_T2469.png │ │ │ │ ├── img_T2470.png │ │ │ │ ├── img_T2471.png │ │ │ │ ├── img_T2472.png │ │ │ │ ├── img_T2473.png │ │ │ │ ├── img_T2474.png │ │ │ │ ├── img_T2475.png │ │ │ │ ├── img_T2476.png │ │ │ │ ├── img_T2477.png │ │ │ │ ├── img_T2478.png │ │ │ │ ├── img_T2479.png │ │ │ │ ├── img_T2480.png │ │ │ │ ├── img_T2481.png │ │ │ │ ├── img_T2482.png │ │ │ │ ├── img_T2483.png │ │ │ │ ├── img_T2484.png │ │ │ │ ├── img_T2485.png │ │ │ │ ├── img_T2486.png │ │ │ │ ├── img_T2487.png │ │ │ │ ├── img_T2488.png │ │ │ │ ├── img_T2489.png │ │ │ │ ├── img_T2490.png │ │ │ │ ├── img_T2491.png │ │ │ │ ├── img_T2492.png │ │ │ │ ├── img_T2493.png │ │ │ │ ├── img_T2494.png │ │ │ │ ├── img_T2495.png │ │ │ │ ├── img_T2496.png │ │ │ │ ├── img_T2497.png │ │ │ │ ├── img_T2498.png │ │ │ │ ├── img_T2499.png │ │ │ │ ├── img_T2500.png │ │ │ │ ├── img_T2501.png │ │ │ │ ├── img_T2502.png │ │ │ │ ├── img_T2503.png │ │ │ │ ├── img_T2504.png │ │ │ │ ├── img_T2505.png │ │ │ │ ├── img_T2506.png │ │ │ │ ├── img_T2507.png │ │ │ │ ├── img_T2508.png │ │ │ │ ├── img_T2509.png │ │ │ │ ├── img_T2510.png │ │ │ │ ├── img_T2511.png │ │ │ │ ├── img_T2512.png │ │ │ │ ├── img_T2513.png │ │ │ │ ├── img_T2514.png │ │ │ │ ├── img_T2515.png │ │ │ │ ├── img_T2516.png │ │ │ │ ├── img_T2517.png │ │ │ │ ├── img_T2518.png │ │ │ │ ├── img_T2519.png │ │ │ │ ├── img_T2520.png │ │ │ │ ├── img_T2521.png │ │ │ │ ├── img_T2522.png │ │ │ │ ├── img_T2523.png │ │ │ │ ├── img_T2524.png │ │ │ │ ├── img_T2525.png │ │ │ │ ├── img_T2526.png │ │ │ │ ├── img_T2527.png │ │ │ │ ├── img_T2528.png │ │ │ │ ├── img_T2529.png │ │ │ │ ├── img_T2530.png │ │ │ │ ├── img_T2531.png │ │ │ │ ├── img_T2532.png │ │ │ │ ├── img_T2533.png │ │ │ │ ├── img_T2534.png │ │ │ │ ├── img_T2535.png │ │ │ │ ├── img_T2536.png │ │ │ │ ├── img_T2537.png │ │ │ │ ├── img_T2538.png │ │ │ │ ├── img_T2539.png │ │ │ │ ├── img_T2540.png │ │ │ │ ├── img_T2541.png │ │ │ │ ├── img_T2542.png │ │ │ │ ├── img_T2543.png │ │ │ │ ├── img_T2544.png │ │ │ │ ├── img_T2545.png │ │ │ │ ├── img_T2546.png │ │ │ │ ├── img_T2547.png │ │ │ │ ├── img_T2548.png │ │ │ │ ├── img_T2549.png │ │ │ │ ├── img_T2550.png │ │ │ │ ├── img_T2551.png │ │ │ │ ├── img_T2552.png │ │ │ │ ├── img_T2553.png │ │ │ │ ├── img_T2554.png │ │ │ │ ├── img_T2555.png │ │ │ │ ├── img_T2556.png │ │ │ │ ├── img_T2557.png │ │ │ │ ├── img_T2558.png │ │ │ │ ├── img_T2559.png │ │ │ │ ├── img_T2560.png │ │ │ │ ├── img_T2561.png │ │ │ │ ├── img_T2562.png │ │ │ │ ├── img_T2563.png │ │ │ │ ├── img_T2564.png │ │ │ │ ├── img_T2565.png │ │ │ │ ├── img_T2566.png │ │ │ │ ├── img_T2567.png │ │ │ │ ├── img_T2568.png │ │ │ │ ├── img_T2569.png │ │ │ │ ├── img_T2570.png │ │ │ │ ├── img_T2571.png │ │ │ │ ├── img_T2572.png │ │ │ │ ├── img_T2573.png │ │ │ │ ├── img_T2574.png │ │ │ │ ├── img_T2575.png │ │ │ │ ├── img_T2576.png │ │ │ │ ├── img_T2577.png │ │ │ │ ├── img_T2578.png │ │ │ │ ├── img_T2579.png │ │ │ │ ├── img_T2580.png │ │ │ │ ├── img_T2581.png │ │ │ │ ├── img_T2582.png │ │ │ │ ├── img_T2583.png │ │ │ │ ├── img_T2584.png │ │ │ │ ├── img_T2585.png │ │ │ │ ├── img_T2586.png │ │ │ │ ├── img_T2587.png │ │ │ │ ├── img_T2588.png │ │ │ │ ├── img_T2589.png │ │ │ │ ├── img_T2590.png │ │ │ │ ├── img_T2591.png │ │ │ │ ├── img_T2592.png │ │ │ │ ├── img_T2593.png │ │ │ │ ├── img_T2594.png │ │ │ │ ├── img_T2595.png │ │ │ │ ├── img_T2596.png │ │ │ │ ├── img_T2597.png │ │ │ │ ├── img_T2598.png │ │ │ │ ├── img_T2599.png │ │ │ │ ├── img_T2600.png │ │ │ │ ├── img_T2601.png │ │ │ │ ├── img_T2602.png │ │ │ │ ├── img_T2603.png │ │ │ │ ├── img_T2604.png │ │ │ │ ├── img_T2605.png │ │ │ │ ├── img_T2606.png │ │ │ │ ├── img_T2607.png │ │ │ │ ├── img_T2608.png │ │ │ │ ├── img_T2609.png │ │ │ │ ├── img_T2610.png │ │ │ │ ├── img_T2611.png │ │ │ │ ├── img_T2612.png │ │ │ │ ├── img_T2613.png │ │ │ │ ├── img_T2614.png │ │ │ │ ├── img_T2615.png │ │ │ │ ├── img_T2616.png │ │ │ │ ├── img_T2617.png │ │ │ │ ├── img_T2618.png │ │ │ │ ├── img_T2619.png │ │ │ │ ├── img_T2620.png │ │ │ │ ├── img_T2621.png │ │ │ │ ├── img_T2622.png │ │ │ │ ├── img_T2623.png │ │ │ │ ├── img_T2624.png │ │ │ │ ├── img_T2625.png │ │ │ │ ├── img_T2626.png │ │ │ │ ├── img_T2627.png │ │ │ │ ├── img_T2628.png │ │ │ │ ├── img_T2629.png │ │ │ │ ├── img_T2630.png │ │ │ │ ├── img_T2631.png │ │ │ │ ├── img_T2632.png │ │ │ │ ├── img_T2633.png │ │ │ │ ├── img_T2634.png │ │ │ │ ├── img_T2635.png │ │ │ │ ├── img_T2636.png │ │ │ │ ├── img_T2637.png │ │ │ │ ├── img_T2638.png │ │ │ │ ├── img_T2639.png │ │ │ │ ├── img_T2640.png │ │ │ │ ├── img_T2641.png │ │ │ │ ├── img_T2642.png │ │ │ │ ├── img_T2643.png │ │ │ │ ├── img_T2644.png │ │ │ │ ├── img_T2645.png │ │ │ │ ├── img_T2646.png │ │ │ │ ├── img_T2647.png │ │ │ │ ├── img_T2648.png │ │ │ │ ├── img_T2649.png │ │ │ │ ├── img_T2650.png │ │ │ │ ├── img_T2651.png │ │ │ │ ├── img_T2652.png │ │ │ │ ├── img_T2653.png │ │ │ │ ├── img_T2654.png │ │ │ │ ├── img_T2655.png │ │ │ │ ├── img_T2656.png │ │ │ │ ├── img_T2657.png │ │ │ │ ├── img_T2658.png │ │ │ │ ├── img_T2659.png │ │ │ │ ├── img_T2660.png │ │ │ │ ├── img_T2661.png │ │ │ │ ├── img_T2662.png │ │ │ │ ├── img_T2663.png │ │ │ │ ├── img_T2664.png │ │ │ │ ├── img_T2665.png │ │ │ │ ├── img_T2666.png │ │ │ │ ├── img_T2667.png │ │ │ │ ├── img_T2668.png │ │ │ │ ├── img_T2669.png │ │ │ │ ├── img_T2670.png │ │ │ │ ├── img_T2671.png │ │ │ │ ├── img_T2672.png │ │ │ │ ├── img_T2673.png │ │ │ │ ├── img_T2674.png │ │ │ │ ├── img_T2675.png │ │ │ │ ├── img_T2676.png │ │ │ │ ├── img_T2677.png │ │ │ │ ├── img_T2678.png │ │ │ │ ├── img_T2679.png │ │ │ │ ├── img_T2680.png │ │ │ │ ├── img_T2681.png │ │ │ │ ├── img_T2682.png │ │ │ │ ├── img_T2683.png │ │ │ │ ├── img_T2684.png │ │ │ │ ├── img_T2685.png │ │ │ │ ├── img_T2686.png │ │ │ │ ├── img_T2687.png │ │ │ │ ├── img_T2688.png │ │ │ │ ├── img_T2689.png │ │ │ │ ├── img_T2690.png │ │ │ │ ├── img_T2691.png │ │ │ │ ├── img_T2692.png │ │ │ │ ├── img_T2693.png │ │ │ │ ├── img_T2694.png │ │ │ │ ├── img_T2695.png │ │ │ │ ├── img_T2696.png │ │ │ │ ├── img_T2697.png │ │ │ │ ├── img_T2698.png │ │ │ │ ├── img_T2699.png │ │ │ │ ├── img_T2700.png │ │ │ │ ├── img_T2701.png │ │ │ │ ├── img_T2702.png │ │ │ │ ├── img_T2703.png │ │ │ │ ├── img_T2704.png │ │ │ │ ├── img_T2705.png │ │ │ │ ├── img_T2706.png │ │ │ │ ├── img_T2707.png │ │ │ │ ├── img_T2708.png │ │ │ │ ├── img_T2709.png │ │ │ │ ├── img_T2710.png │ │ │ │ ├── img_T2711.png │ │ │ │ ├── img_T2712.png │ │ │ │ ├── img_T2713.png │ │ │ │ ├── img_T2714.png │ │ │ │ ├── img_T2715.png │ │ │ │ ├── img_T2716.png │ │ │ │ ├── img_T2717.png │ │ │ │ ├── img_T2718.png │ │ │ │ ├── img_T2719.png │ │ │ │ ├── img_T2720.png │ │ │ │ ├── img_T2721.png │ │ │ │ ├── img_T2722.png │ │ │ │ ├── img_T2723.png │ │ │ │ ├── img_T2724.png │ │ │ │ ├── img_T2725.png │ │ │ │ ├── img_T2726.png │ │ │ │ ├── img_T2727.png │ │ │ │ ├── img_T2728.png │ │ │ │ ├── img_T2729.png │ │ │ │ ├── img_T2730.png │ │ │ │ ├── img_T2731.png │ │ │ │ ├── img_T2732.png │ │ │ │ ├── img_T2733.png │ │ │ │ ├── img_T2734.png │ │ │ │ ├── img_T2735.png │ │ │ │ ├── img_T2736.png │ │ │ │ ├── img_T2737.png │ │ │ │ ├── img_T2738.png │ │ │ │ ├── img_T2739.png │ │ │ │ ├── img_T2740.png │ │ │ │ ├── img_T2741.png │ │ │ │ ├── img_T2742.png │ │ │ │ ├── img_T2743.png │ │ │ │ ├── img_T2744.png │ │ │ │ ├── img_T2745.png │ │ │ │ ├── img_T2746.png │ │ │ │ ├── img_T2747.png │ │ │ │ ├── img_T2748.png │ │ │ │ ├── img_T2749.png │ │ │ │ ├── img_T2750.png │ │ │ │ ├── img_T2751.png │ │ │ │ ├── img_T2752.png │ │ │ │ ├── img_T2753.png │ │ │ │ ├── img_T2754.png │ │ │ │ ├── img_T2755.png │ │ │ │ ├── img_T2756.png │ │ │ │ ├── img_T2757.png │ │ │ │ ├── img_T2758.png │ │ │ │ ├── img_T2759.png │ │ │ │ ├── img_T2760.png │ │ │ │ ├── img_T2761.png │ │ │ │ ├── img_T2762.png │ │ │ │ ├── img_T2763.png │ │ │ │ ├── img_T2764.png │ │ │ │ ├── img_T2765.png │ │ │ │ ├── img_T2766.png │ │ │ │ ├── img_T2767.png │ │ │ │ ├── img_T2768.png │ │ │ │ ├── img_T2769.png │ │ │ │ ├── img_T2770.png │ │ │ │ ├── img_T2771.png │ │ │ │ ├── img_T2772.png │ │ │ │ ├── img_T2773.png │ │ │ │ ├── img_T2774.png │ │ │ │ ├── img_T2775.png │ │ │ │ ├── img_T2776.png │ │ │ │ ├── img_T2777.png │ │ │ │ ├── img_T2778.png │ │ │ │ ├── img_T2779.png │ │ │ │ ├── img_T2780.png │ │ │ │ ├── img_T2781.png │ │ │ │ ├── img_T2782.png │ │ │ │ ├── img_T2783.png │ │ │ │ ├── img_T2784.png │ │ │ │ ├── img_T2785.png │ │ │ │ ├── img_T2786.png │ │ │ │ ├── img_T2787.png │ │ │ │ ├── img_T2788.png │ │ │ │ ├── img_T2789.png │ │ │ │ ├── img_T2790.png │ │ │ │ ├── img_T2791.png │ │ │ │ ├── img_T2792.png │ │ │ │ ├── img_T2793.png │ │ │ │ ├── img_T2794.png │ │ │ │ ├── img_T2795.png │ │ │ │ ├── img_T2796.png │ │ │ │ ├── img_T2797.png │ │ │ │ ├── img_T2798.png │ │ │ │ ├── img_T2799.png │ │ │ │ ├── img_T2800.png │ │ │ │ ├── img_T2801.png │ │ │ │ ├── img_T2802.png │ │ │ │ ├── img_T2803.png │ │ │ │ ├── img_T2804.png │ │ │ │ ├── img_T2805.png │ │ │ │ ├── img_T2806.png │ │ │ │ ├── img_T2807.png │ │ │ │ ├── img_T2808.png │ │ │ │ ├── img_T2809.png │ │ │ │ ├── img_T2810.png │ │ │ │ ├── img_T2811.png │ │ │ │ ├── img_T2812.png │ │ │ │ ├── img_T2813.png │ │ │ │ ├── img_T2814.png │ │ │ │ ├── img_T2815.png │ │ │ │ ├── img_T2816.png │ │ │ │ ├── img_T2817.png │ │ │ │ ├── img_T2818.png │ │ │ │ ├── img_T2819.png │ │ │ │ ├── img_T2820.png │ │ │ │ ├── img_T2821.png │ │ │ │ ├── img_T2822.png │ │ │ │ ├── img_T2823.png │ │ │ │ ├── img_T2824.png │ │ │ │ ├── img_T2825.png │ │ │ │ ├── img_T2826.png │ │ │ │ ├── img_T2827.png │ │ │ │ ├── img_T2828.png │ │ │ │ ├── img_T2829.png │ │ │ │ ├── img_T2830.png │ │ │ │ ├── img_T2831.png │ │ │ │ ├── img_T2832.png │ │ │ │ ├── img_T2833.png │ │ │ │ ├── img_T2834.png │ │ │ │ ├── img_T2835.png │ │ │ │ ├── img_T2836.png │ │ │ │ ├── img_T2837.png │ │ │ │ ├── img_T2838.png │ │ │ │ ├── img_T2839.png │ │ │ │ ├── img_T2840.png │ │ │ │ ├── img_T2841.png │ │ │ │ ├── img_T2842.png │ │ │ │ ├── img_T2843.png │ │ │ │ ├── img_T2844.png │ │ │ │ ├── img_T2845.png │ │ │ │ ├── img_T2846.png │ │ │ │ ├── img_T2847.png │ │ │ │ ├── img_T2848.png │ │ │ │ ├── img_T2849.png │ │ │ │ ├── img_T2850.png │ │ │ │ ├── img_T2851.png │ │ │ │ ├── img_T2852.png │ │ │ │ ├── img_T2853.png │ │ │ │ ├── img_T2854.png │ │ │ │ ├── img_T2855.png │ │ │ │ ├── img_T2856.png │ │ │ │ ├── img_T2857.png │ │ │ │ ├── img_T2858.png │ │ │ │ ├── img_T2859.png │ │ │ │ ├── img_T2860.png │ │ │ │ ├── img_T2861.png │ │ │ │ ├── img_T2862.png │ │ │ │ ├── img_T2863.png │ │ │ │ ├── img_T2864.png │ │ │ │ ├── img_T2865.png │ │ │ │ ├── img_T2866.png │ │ │ │ ├── img_T2867.png │ │ │ │ ├── img_T2868.png │ │ │ │ ├── img_T2869.png │ │ │ │ ├── img_T2870.png │ │ │ │ ├── img_T2871.png │ │ │ │ ├── img_T2872.png │ │ │ │ ├── img_T2873.png │ │ │ │ ├── img_T2874.png │ │ │ │ ├── img_T2875.png │ │ │ │ ├── img_T2876.png │ │ │ │ ├── img_T2877.png │ │ │ │ ├── img_T2878.png │ │ │ │ ├── img_T2879.png │ │ │ │ ├── img_T2880.png │ │ │ │ ├── img_T2881.png │ │ │ │ ├── img_T2882.png │ │ │ │ ├── img_T2883.png │ │ │ │ ├── img_T2884.png │ │ │ │ ├── img_T2885.png │ │ │ │ ├── img_T2886.png │ │ │ │ ├── img_T2887.png │ │ │ │ ├── img_T2888.png │ │ │ │ ├── img_T2889.png │ │ │ │ ├── img_T2890.png │ │ │ │ ├── img_T2891.png │ │ │ │ ├── img_T2892.png │ │ │ │ ├── img_T2893.png │ │ │ │ ├── img_T2894.png │ │ │ │ ├── img_T2895.png │ │ │ │ ├── img_T2896.png │ │ │ │ ├── img_T2897.png │ │ │ │ ├── img_T2898.png │ │ │ │ ├── img_T2899.png │ │ │ │ ├── img_T2900.png │ │ │ │ ├── img_T2901.png │ │ │ │ ├── img_T2902.png │ │ │ │ ├── img_T2903.png │ │ │ │ ├── img_T2904.png │ │ │ │ ├── img_T2905.png │ │ │ │ ├── img_T2906.png │ │ │ │ ├── img_T2907.png │ │ │ │ ├── img_T2908.png │ │ │ │ ├── img_T2909.png │ │ │ │ ├── img_T2910.png │ │ │ │ ├── img_T2911.png │ │ │ │ ├── img_T2912.png │ │ │ │ ├── img_T2913.png │ │ │ │ ├── img_T2914.png │ │ │ │ ├── img_T2915.png │ │ │ │ ├── img_T2916.png │ │ │ │ ├── img_T2917.png │ │ │ │ ├── img_T2918.png │ │ │ │ ├── img_T2919.png │ │ │ │ ├── img_T2920.png │ │ │ │ ├── img_T2921.png │ │ │ │ ├── img_T2922.png │ │ │ │ ├── img_T2923.png │ │ │ │ ├── img_T2924.png │ │ │ │ ├── img_T2925.png │ │ │ │ ├── img_T2926.png │ │ │ │ ├── img_T2927.png │ │ │ │ ├── img_T2928.png │ │ │ │ ├── img_T2929.png │ │ │ │ ├── img_T2930.png │ │ │ │ ├── img_T2931.png │ │ │ │ ├── img_T2932.png │ │ │ │ ├── img_T2933.png │ │ │ │ ├── img_T2934.png │ │ │ │ ├── img_T2935.png │ │ │ │ ├── img_T2936.png │ │ │ │ ├── img_T2937.png │ │ │ │ ├── img_T2938.png │ │ │ │ ├── img_T2939.png │ │ │ │ ├── img_T2940.png │ │ │ │ ├── img_T2941.png │ │ │ │ ├── img_T2942.png │ │ │ │ ├── img_T2943.png │ │ │ │ ├── img_T2944.png │ │ │ │ ├── img_T2945.png │ │ │ │ ├── img_T2946.png │ │ │ │ ├── img_T2947.png │ │ │ │ ├── img_T2948.png │ │ │ │ ├── img_T2949.png │ │ │ │ ├── img_T2950.png │ │ │ │ ├── img_T2951.png │ │ │ │ ├── img_T2952.png │ │ │ │ ├── img_T2953.png │ │ │ │ ├── img_T2954.png │ │ │ │ ├── img_T2955.png │ │ │ │ ├── img_T2956.png │ │ │ │ ├── img_T2957.png │ │ │ │ ├── img_T2958.png │ │ │ │ ├── img_T2959.png │ │ │ │ ├── img_T2960.png │ │ │ │ ├── img_T2961.png │ │ │ │ ├── img_T2962.png │ │ │ │ ├── img_T2963.png │ │ │ │ ├── img_T2964.png │ │ │ │ ├── img_T2965.png │ │ │ │ ├── img_T2966.png │ │ │ │ ├── img_T2967.png │ │ │ │ ├── img_T2968.png │ │ │ │ ├── img_T2969.png │ │ │ │ ├── img_T2970.png │ │ │ │ ├── img_T2971.png │ │ │ │ ├── img_T2972.png │ │ │ │ ├── img_T2973.png │ │ │ │ ├── img_T2974.png │ │ │ │ ├── img_T2975.png │ │ │ │ ├── img_T2976.png │ │ │ │ ├── img_T2977.png │ │ │ │ ├── img_T2978.png │ │ │ │ ├── img_T2979.png │ │ │ │ ├── img_T2980.png │ │ │ │ ├── img_T2981.png │ │ │ │ ├── img_T2982.png │ │ │ │ ├── img_T2983.png │ │ │ │ ├── img_T2984.png │ │ │ │ ├── img_T2985.png │ │ │ │ ├── img_T2986.png │ │ │ │ ├── img_T2987.png │ │ │ │ ├── img_T2988.png │ │ │ │ ├── img_T2989.png │ │ │ │ ├── img_T2990.png │ │ │ │ ├── img_T2991.png │ │ │ │ ├── img_T2992.png │ │ │ │ ├── img_T2993.png │ │ │ │ ├── img_T2994.png │ │ │ │ ├── img_T2995.png │ │ │ │ ├── img_T2996.png │ │ │ │ ├── img_T2997.png │ │ │ │ ├── img_T2998.png │ │ │ │ ├── img_T2999.png │ │ │ │ ├── img_T3000.png │ │ │ │ ├── img_T3001.png │ │ │ │ ├── img_T3002.png │ │ │ │ ├── img_T3003.png │ │ │ │ ├── img_T3004.png │ │ │ │ ├── img_T3005.png │ │ │ │ ├── img_T3006.png │ │ │ │ ├── img_T3007.png │ │ │ │ ├── img_T3008.png │ │ │ │ ├── img_T3009.png │ │ │ │ ├── img_T3010.png │ │ │ │ ├── img_T3011.png │ │ │ │ ├── img_T3012.png │ │ │ │ ├── img_T3013.png │ │ │ │ ├── img_T3014.png │ │ │ │ ├── img_T3015.png │ │ │ │ ├── img_T3016.png │ │ │ │ ├── img_T3017.png │ │ │ │ ├── img_T3018.png │ │ │ │ ├── img_T3019.png │ │ │ │ ├── img_T3020.png │ │ │ │ ├── img_T3021.png │ │ │ │ ├── img_T3022.png │ │ │ │ ├── img_T3023.png │ │ │ │ ├── img_T3024.png │ │ │ │ ├── img_T3025.png │ │ │ │ ├── img_T3026.png │ │ │ │ ├── img_T3027.png │ │ │ │ ├── img_T3028.png │ │ │ │ ├── img_T3029.png │ │ │ │ ├── img_T3030.png │ │ │ │ ├── img_T3031.png │ │ │ │ ├── img_T3032.png │ │ │ │ ├── img_T3033.png │ │ │ │ ├── img_T3034.png │ │ │ │ ├── img_T3035.png │ │ │ │ ├── img_T3036.png │ │ │ │ ├── img_T3037.png │ │ │ │ ├── img_T3038.png │ │ │ │ ├── img_T3039.png │ │ │ │ ├── img_T3040.png │ │ │ │ ├── img_T3041.png │ │ │ │ ├── img_T3042.png │ │ │ │ ├── img_T3043.png │ │ │ │ ├── img_T3044.png │ │ │ │ ├── img_T3045.png │ │ │ │ ├── img_T3046.png │ │ │ │ ├── img_T3047.png │ │ │ │ ├── img_T3048.png │ │ │ │ ├── img_T3049.png │ │ │ │ ├── img_T3050.png │ │ │ │ ├── img_T3051.png │ │ │ │ ├── img_T3052.png │ │ │ │ ├── img_T3053.png │ │ │ │ ├── img_T3054.png │ │ │ │ ├── img_T3055.png │ │ │ │ ├── img_T3056.png │ │ │ │ ├── img_T3057.png │ │ │ │ ├── img_T3058.png │ │ │ │ ├── img_T3059.png │ │ │ │ ├── img_T3060.png │ │ │ │ ├── img_T3061.png │ │ │ │ ├── img_T3062.png │ │ │ │ ├── img_T3063.png │ │ │ │ ├── img_T3064.png │ │ │ │ ├── img_T3065.png │ │ │ │ ├── img_T3066.png │ │ │ │ ├── img_T3067.png │ │ │ │ ├── img_T3068.png │ │ │ │ ├── img_T3069.png │ │ │ │ ├── img_T3070.png │ │ │ │ ├── img_T3071.png │ │ │ │ ├── img_T3072.png │ │ │ │ ├── img_T3073.png │ │ │ │ ├── img_T3074.png │ │ │ │ ├── img_T3075.png │ │ │ │ ├── img_T3076.png │ │ │ │ ├── img_T3077.png │ │ │ │ ├── img_T3078.png │ │ │ │ ├── img_T3079.png │ │ │ │ ├── img_T3080.png │ │ │ │ ├── img_T3081.png │ │ │ │ ├── img_T3082.png │ │ │ │ ├── img_T3083.png │ │ │ │ ├── img_T3084.png │ │ │ │ ├── img_T3085.png │ │ │ │ ├── img_T3086.png │ │ │ │ ├── img_T3087.png │ │ │ │ ├── img_T3088.png │ │ │ │ ├── img_T3089.png │ │ │ │ ├── img_T3090.png │ │ │ │ ├── img_T3091.png │ │ │ │ ├── img_T3092.png │ │ │ │ ├── img_T3093.png │ │ │ │ ├── img_T3094.png │ │ │ │ ├── img_T3095.png │ │ │ │ ├── img_T3096.png │ │ │ │ ├── img_T3097.png │ │ │ │ ├── img_T3098.png │ │ │ │ ├── img_T3099.png │ │ │ │ ├── img_T3100.png │ │ │ │ ├── img_T3101.png │ │ │ │ ├── img_T3102.png │ │ │ │ ├── img_T3103.png │ │ │ │ ├── img_T3104.png │ │ │ │ ├── img_T3105.png │ │ │ │ ├── img_T3106.png │ │ │ │ ├── img_T3107.png │ │ │ │ ├── img_T3108.png │ │ │ │ ├── img_T3109.png │ │ │ │ ├── img_T3110.png │ │ │ │ ├── img_T3111.png │ │ │ │ ├── img_T3112.png │ │ │ │ ├── img_T3113.png │ │ │ │ ├── img_T3114.png │ │ │ │ ├── img_T3115.png │ │ │ │ ├── img_T3116.png │ │ │ │ ├── img_T3117.png │ │ │ │ ├── img_T3118.png │ │ │ │ ├── img_T3119.png │ │ │ │ ├── img_T3120.png │ │ │ │ ├── img_T3121.png │ │ │ │ ├── img_T3122.png │ │ │ │ ├── img_T3123.png │ │ │ │ ├── img_T3124.png │ │ │ │ ├── img_T3125.png │ │ │ │ ├── img_T3126.png │ │ │ │ ├── img_T3127.png │ │ │ │ ├── img_T3128.png │ │ │ │ ├── img_T3129.png │ │ │ │ ├── img_T3130.png │ │ │ │ ├── img_T3131.png │ │ │ │ ├── img_T3132.png │ │ │ │ ├── img_T3133.png │ │ │ │ ├── img_T3134.png │ │ │ │ ├── img_T3135.png │ │ │ │ ├── img_T3136.png │ │ │ │ ├── img_T3137.png │ │ │ │ ├── img_T3138.png │ │ │ │ ├── img_T3139.png │ │ │ │ ├── img_T3140.png │ │ │ │ ├── img_T3141.png │ │ │ │ ├── img_T3142.png │ │ │ │ ├── img_T3143.png │ │ │ │ ├── img_T3144.png │ │ │ │ ├── img_T3145.png │ │ │ │ ├── img_T3146.png │ │ │ │ ├── img_T3147.png │ │ │ │ ├── img_T3148.png │ │ │ │ ├── img_T3149.png │ │ │ │ ├── img_T3150.png │ │ │ │ ├── img_T3151.png │ │ │ │ ├── img_T3152.png │ │ │ │ ├── img_T3153.png │ │ │ │ ├── img_T3154.png │ │ │ │ ├── img_T3155.png │ │ │ │ ├── img_T3156.png │ │ │ │ ├── img_T3157.png │ │ │ │ ├── img_T3158.png │ │ │ │ ├── img_T3159.png │ │ │ │ ├── img_T3160.png │ │ │ │ ├── img_T3161.png │ │ │ │ ├── img_T3162.png │ │ │ │ ├── img_T3163.png │ │ │ │ ├── img_T3164.png │ │ │ │ ├── img_T3165.png │ │ │ │ ├── img_T3166.png │ │ │ │ ├── img_T3167.png │ │ │ │ ├── img_T3168.png │ │ │ │ ├── img_T3169.png │ │ │ │ ├── img_T3170.png │ │ │ │ ├── img_T3171.png │ │ │ │ ├── img_T3172.png │ │ │ │ ├── img_T3173.png │ │ │ │ ├── img_T3174.png │ │ │ │ ├── img_T3175.png │ │ │ │ ├── img_T3176.png │ │ │ │ ├── img_T3177.png │ │ │ │ ├── img_T3178.png │ │ │ │ ├── img_T3179.png │ │ │ │ ├── img_T3180.png │ │ │ │ ├── img_T3181.png │ │ │ │ ├── img_T3182.png │ │ │ │ ├── img_T3183.png │ │ │ │ ├── img_T3184.png │ │ │ │ ├── img_T3185.png │ │ │ │ ├── img_T3186.png │ │ │ │ ├── img_T3187.png │ │ │ │ ├── img_T3188.png │ │ │ │ ├── img_T3189.png │ │ │ │ ├── img_T3190.png │ │ │ │ ├── img_T3191.png │ │ │ │ ├── img_T3192.png │ │ │ │ ├── img_T3193.png │ │ │ │ ├── img_T3194.png │ │ │ │ ├── img_T3195.png │ │ │ │ ├── img_T3196.png │ │ │ │ ├── img_T3197.png │ │ │ │ ├── img_T3198.png │ │ │ │ ├── img_T3199.png │ │ │ │ ├── img_T3200.png │ │ │ │ ├── img_T3201.png │ │ │ │ ├── img_T3202.png │ │ │ │ ├── img_T3203.png │ │ │ │ ├── img_T3204.png │ │ │ │ ├── img_T3205.png │ │ │ │ ├── img_T3206.png │ │ │ │ ├── img_T3207.png │ │ │ │ ├── img_T3208.png │ │ │ │ ├── img_T3209.png │ │ │ │ ├── img_T3210.png │ │ │ │ ├── img_T3211.png │ │ │ │ ├── img_T3212.png │ │ │ │ ├── img_T3213.png │ │ │ │ ├── img_T3214.png │ │ │ │ ├── img_T3215.png │ │ │ │ ├── img_T3216.png │ │ │ │ ├── img_T3217.png │ │ │ │ ├── img_T3218.png │ │ │ │ ├── img_T3219.png │ │ │ │ ├── img_T3220.png │ │ │ │ ├── img_T3221.png │ │ │ │ ├── img_T3222.png │ │ │ │ ├── img_T3223.png │ │ │ │ ├── img_T3224.png │ │ │ │ ├── img_T3225.png │ │ │ │ ├── img_T3226.png │ │ │ │ ├── img_T3227.png │ │ │ │ ├── img_T3228.png │ │ │ │ ├── img_T3229.png │ │ │ │ ├── img_T3230.png │ │ │ │ ├── img_T3231.png │ │ │ │ ├── img_T3232.png │ │ │ │ ├── img_T3233.png │ │ │ │ └── img_T3234.png │ │ │ ├── movie_res.res │ │ │ ├── music.wav │ │ │ └── sound_res.res │ │ └── src │ │ │ ├── main.c │ │ │ ├── movie.c │ │ │ ├── pcm.c │ │ │ ├── rom_header.c │ │ │ ├── tile.c │ │ │ ├── tilemap.c │ │ │ ├── z80_drv.h │ │ │ └── z80_drv.s80 │ └── starfield-donut │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── res │ │ ├── donut.png │ │ ├── gfx.res │ │ └── starfield.png │ │ ├── src │ │ ├── main.c │ │ └── rom_header.c │ │ └── star.cbp ├── flash-save │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ ├── flash-save.cbp │ ├── inc │ │ └── lipsum.h │ ├── out │ │ └── release │ │ │ └── rom.bin │ └── src │ │ ├── main.c │ │ └── rom_header.c ├── fx │ ├── h-int │ │ ├── scaling │ │ │ ├── .vscode │ │ │ │ ├── c_cpp_properties.json │ │ │ │ ├── extensions.json │ │ │ │ └── settings.json │ │ │ ├── out │ │ │ │ └── release │ │ │ │ │ └── rom.bin │ │ │ ├── res │ │ │ │ ├── gfx │ │ │ │ │ └── sgdk_logo.png │ │ │ │ └── resources.res │ │ │ ├── scaling.cbp │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ └── rom_header.c │ │ └── wobble │ │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ │ ├── res │ │ │ ├── gfx │ │ │ │ ├── Font_Namco_Gradient.png │ │ │ │ ├── MenuBackdrop_Center.png │ │ │ │ ├── MenuBackdrop_Corner.png │ │ │ │ ├── MenuBackdrop_EdgeH.png │ │ │ │ ├── MenuBackdrop_EdgeV.png │ │ │ │ └── sgdk_logo.png │ │ │ └── resources.res │ │ │ ├── src │ │ │ ├── helpers.c │ │ │ ├── helpers.h │ │ │ ├── main.c │ │ │ └── rom_header.c │ │ │ └── wobble.cbp │ ├── hilight-shadow │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── hs.cbp │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ ├── scroll │ │ └── linescroll │ │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ │ ├── linescroll.cbp │ │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ │ ├── res │ │ │ ├── gfx │ │ │ │ └── bg.png │ │ │ └── resources.res │ │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ ├── silhouette │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── res │ │ │ ├── graphics │ │ │ │ ├── bga.png │ │ │ │ ├── bgb.png │ │ │ │ ├── enemy02.png │ │ │ │ ├── sonic.png │ │ │ │ ├── spray_mask_hor.png │ │ │ │ └── spray_mask_vert.png │ │ │ └── resources.res │ │ ├── silhouette.cbp │ │ └── src │ │ │ └── main.c │ └── sprite-masking │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── res │ │ ├── graphics │ │ │ ├── bgb.png │ │ │ ├── sonic.png │ │ │ └── sprite_mask.png │ │ └── resources.res │ │ ├── sprite-masking.cbp │ │ └── src │ │ ├── main.c │ │ └── rom_header.c ├── game │ ├── platformer │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── inc │ │ │ ├── camera.h │ │ │ ├── global.h │ │ │ ├── levelgenerator.h │ │ │ ├── levels.h │ │ │ ├── map.h │ │ │ ├── physics.h │ │ │ ├── player.h │ │ │ └── xtypes.h │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── platformer.cbp │ │ ├── res │ │ │ ├── images │ │ │ │ ├── level.png │ │ │ │ └── player.png │ │ │ ├── resources.res │ │ │ └── sound │ │ │ │ ├── jump.wav │ │ │ │ └── sonic2Emerald.vgm │ │ └── src │ │ │ ├── camera.c │ │ │ ├── global.c │ │ │ ├── levelgenerator.c │ │ │ ├── levels.c │ │ │ ├── main.c │ │ │ ├── map.c │ │ │ ├── physics.c │ │ │ ├── player.c │ │ │ ├── rom_header.c │ │ │ └── xtypes.c │ └── sonic │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── inc │ │ ├── camera.h │ │ ├── entities.h │ │ ├── hud.h │ │ ├── level.h │ │ ├── player.h │ │ └── utils.h │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── res │ │ ├── gfx │ │ │ ├── S1_GHZ1_BG.png │ │ │ ├── S1_GHZ1_FG.png │ │ │ ├── bga.png │ │ │ ├── bgb.png │ │ │ └── rgb_example.png │ │ ├── music │ │ │ └── sonic1.vgm │ │ ├── res_gfx.res │ │ ├── res_sound.res │ │ ├── res_sprite.res │ │ ├── sfx │ │ │ ├── S1_die.wav │ │ │ ├── S1_explode1.wav │ │ │ ├── S1_explode2.wav │ │ │ ├── S1_explode3.wav │ │ │ ├── S1_jump.wav │ │ │ ├── S1_jumper.wav │ │ │ ├── S1_ring1.wav │ │ │ ├── S1_ring2.wav │ │ │ ├── S1_ringlost.wav │ │ │ ├── S1_roll.wav │ │ │ ├── S1_spinning.wav │ │ │ └── S1_stop.wav │ │ └── sprite │ │ │ ├── bar.png │ │ │ ├── enemies.png │ │ │ ├── enemy01.png │ │ │ ├── enemy02.png │ │ │ ├── gbar.png │ │ │ ├── jbar.png │ │ │ ├── sbar.png │ │ │ └── sonic.png │ │ ├── sonic.cbp │ │ └── src │ │ ├── camera.c │ │ ├── entities.c │ │ ├── hud.c │ │ ├── level.c │ │ ├── main.c │ │ ├── player.c │ │ ├── rom_header.c │ │ └── utils.c ├── joy-test │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ ├── joy-test.cbp │ ├── out │ │ └── release │ │ │ └── rom.bin │ └── src │ │ ├── main.c │ │ └── rom_header.c ├── linkcable │ └── pacman │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── pacman.cbp │ │ ├── res │ │ ├── bg │ │ │ ├── map.png │ │ │ ├── menu.png │ │ │ └── sgdk.png │ │ ├── resources.res │ │ ├── sound │ │ │ ├── cherry.wav │ │ │ ├── comicszone.vgm │ │ │ ├── connect.wav │ │ │ ├── contrah.vgm │ │ │ ├── disconnect.wav │ │ │ ├── eat.wav │ │ │ ├── eatred.wav │ │ │ ├── fatality.vgm │ │ │ ├── powerup.wav │ │ │ ├── sega.wav │ │ │ ├── shadow.wav │ │ │ ├── sonic.vgm │ │ │ └── victory.vgm │ │ └── sprite │ │ │ ├── cherry.png │ │ │ ├── door.png │ │ │ ├── pacgirl.png │ │ │ ├── pacman.png │ │ │ ├── pause.png │ │ │ ├── red.png │ │ │ └── sonic.png │ │ └── src │ │ ├── main.c │ │ ├── main.h │ │ └── rom_header.c ├── megawifi │ ├── basic │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── megawifi-basic.cbp │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ └── menu │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── README.MD │ │ ├── inc │ │ ├── .gitkeep │ │ ├── mw-api │ │ │ ├── configuration.h │ │ │ ├── configuration_ap.h │ │ │ ├── configuration_cert.h │ │ │ ├── configuration_slot.h │ │ │ ├── datetime.h │ │ │ ├── flash.h │ │ │ ├── http.h │ │ │ ├── ping.h │ │ │ ├── random.h │ │ │ ├── tcp.h │ │ │ ├── udp.h │ │ │ └── upgrade.h │ │ └── utils.h │ │ ├── megawifi-adv.cbp │ │ ├── res │ │ └── .gitkeep │ │ └── src │ │ ├── main.c │ │ ├── mw-api │ │ ├── configuration.c │ │ ├── configuration_ap.c │ │ ├── configuration_cert.c │ │ ├── configuration_slot.c │ │ ├── datetime.c │ │ ├── flash.c │ │ ├── http.c │ │ ├── ping.c │ │ ├── random.c │ │ ├── tcp.c │ │ ├── udp.c │ │ └── upgrade.c │ │ ├── rom_header.c │ │ └── utils.c ├── snd │ ├── sound-test │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── out │ │ │ └── release │ │ │ │ └── rom.bin │ │ ├── res │ │ │ ├── S1_jump.wav │ │ │ ├── S1_stop.wav │ │ │ ├── bad_apple.vgm │ │ │ ├── bad_apple_pcm.vgm │ │ │ ├── cri.wav │ │ │ ├── explode.wav │ │ │ ├── hat1.wav │ │ │ ├── hat2.wav │ │ │ ├── india_11k.wav │ │ │ ├── india_13k.wav │ │ │ ├── india_16k.wav │ │ │ ├── india_22k.wav │ │ │ ├── india_32k.wav │ │ │ ├── india_8k.wav │ │ │ ├── loop1.wav │ │ │ ├── loop2.wav │ │ │ ├── loop3.wav │ │ │ ├── midnight.vgm │ │ │ ├── resources.res │ │ │ ├── roadrash.vgm │ │ │ ├── snare1.wav │ │ │ ├── snare2.wav │ │ │ ├── sonic1.vgm │ │ │ ├── sor2.vgm │ │ │ ├── sor2.xgm │ │ │ └── toy_story.vgm │ │ ├── sound.cbp │ │ └── src │ │ │ ├── main.c │ │ │ └── rom_header.c │ └── xgm-player │ │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ │ ├── inc │ │ ├── log_tab.h │ │ ├── psg_state.h │ │ ├── tracklist.h │ │ ├── xd3.h │ │ ├── xgm_tool.h │ │ └── ym_state.h │ │ ├── out │ │ └── release │ │ │ └── rom.bin │ │ ├── res │ │ ├── Actraiser - Fillmore.vgm │ │ ├── Casino Funk Zone.vgm │ │ ├── City Lights (Act 2).vgm │ │ ├── Icecap.vgm │ │ ├── Pump It.vgm │ │ ├── SMetroid Crateria Surface.vgm │ │ ├── SMetroid Intro.vgm │ │ ├── SMetroid Red Soil.vgm │ │ ├── SMetroid Title.vgm │ │ ├── Singularity.vgm │ │ ├── The Drum Run Rave.vgm │ │ ├── bg.png │ │ ├── bonus.vgm │ │ ├── cursor.png │ │ ├── gfx.res │ │ ├── hat1.wav │ │ ├── hat2.wav │ │ ├── left_right.png │ │ ├── logo.png │ │ ├── music.res │ │ ├── pantry.vgm │ │ ├── progress.png │ │ ├── shadow_mask.png │ │ ├── shadow_mask_16.png │ │ ├── shadow_mask_7.png │ │ ├── shinobi01.vgm │ │ ├── snare1.wav │ │ ├── snare2.wav │ │ ├── sor1.png │ │ ├── starfield.png │ │ └── voice.wav │ │ ├── src │ │ ├── log_tab.c │ │ ├── main.c │ │ ├── psg_state.c │ │ ├── rom_header.c │ │ ├── tracklist.c │ │ ├── xgm_tool.c │ │ └── ym_state.c │ │ └── xgm-player.cbp └── sys │ ├── console │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── extensions.json │ │ └── settings.json │ ├── console.cbp │ ├── out │ │ └── release │ │ │ └── rom.bin │ ├── res │ │ ├── Font_Namco_Opaque.ilbm │ │ ├── Font_Namco_Opaque.png │ │ ├── R-Type_BG.ilbm │ │ ├── R-Type_BG.png │ │ ├── R-Type_FG.ilbm │ │ ├── R-Type_FG.png │ │ └── resources.res │ └── src │ │ ├── main.c │ │ └── rom_header.c │ └── multitasking │ ├── .vscode │ ├── c_cpp_properties.json │ ├── extensions.json │ └── settings.json │ ├── multitasking.cbp │ ├── out │ └── release │ │ └── rom.bin │ └── src │ ├── main.c │ └── rom_header.c ├── src ├── bmp.c ├── bmp_a.s ├── boot │ ├── rom_header.c │ └── sega.s ├── dma.c ├── dma_a.s ├── error_a.s ├── ext │ ├── console.c │ ├── everdrive.c │ ├── fat16.c │ ├── flash-save │ │ ├── README.md │ │ ├── flash.c │ │ └── saveman.c │ ├── link_cable.c │ ├── minimusic │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── data.z80 │ │ ├── define.z80 │ │ ├── doc │ │ │ ├── api-c.md │ │ │ ├── format.md │ │ │ └── teradrive.md │ │ ├── fm.z80 │ │ ├── main.z80 │ │ ├── minimus.c │ │ ├── minimus_drv.s80 │ │ ├── psg.z80 │ │ ├── track.z80 │ │ └── util.z80 │ └── mw │ │ ├── 16c550.c │ │ ├── README.md │ │ ├── gamejolt.c │ │ ├── json.c │ │ ├── lsd.c │ │ ├── megawifi.c │ │ └── ssf.c ├── joy.c ├── kdebug.s ├── map.c ├── mapper.c ├── maths.c ├── maths3D.c ├── maths3D_a.s ├── memory.c ├── memory_a.s ├── object.c ├── pal.c ├── pool.c ├── psg.c ├── snd │ ├── drv_null.s80 │ ├── drv_xgm.s80 │ ├── pcm │ │ ├── drv_dpcm2.s80 │ │ ├── drv_pcm.s80 │ │ ├── drv_pcm4.s80 │ │ ├── snd_dpcm2.c │ │ ├── snd_pcm.c │ │ ├── snd_pcm4.c │ │ └── tab_vol.c │ ├── smp_null.s │ ├── smp_null_dpcm.s │ ├── sound.c │ ├── xgm.c │ ├── xgm2.c │ └── xgm2 │ │ ├── drv_xgm2.s80 │ │ ├── drv_xgm2_fct.i80 │ │ ├── drv_xgm2_mac.i80 │ │ ├── drv_xgm2_pcm_fct.i80 │ │ ├── drv_xgm2_pcm_mac.i80 │ │ ├── drv_xgm2_psg_fct.i80 │ │ ├── drv_xgm2_psg_mac.i80 │ │ ├── drv_xgm2_ym_fct.i80 │ │ └── drv_xgm2_ym_mac.i80 ├── sprite_eng.c ├── sprite_eng_legacy.c ├── sram.c ├── sram_a.s ├── string.c ├── sys.c ├── sys_a.s ├── tab_cnv.c ├── tab_log10.c ├── tab_log2.c ├── tab_sin.c ├── tab_sqrt.c ├── task.s ├── timer.c ├── tools.c ├── tools_a.s ├── types.c ├── vdp.c ├── vdp_bg.c ├── vdp_spr.c ├── vdp_tile.c ├── vdp_tile_a.s ├── vram.c ├── ym2612.c └── z80_ctrl.c └── tools ├── apj ├── .classpath ├── .gitignore ├── .project ├── README.md ├── export.jardesc └── src │ └── sgdk │ └── aplib │ ├── APJ.java │ ├── BitReader.java │ ├── BitWriter.java │ ├── DynamicByteArray.java │ └── Launcher.java ├── bintos ├── bintos.cbp └── src │ ├── CMakeLists.txt │ └── bintos.c ├── commons ├── .classpath ├── .project └── src │ └── sgdk │ └── tool │ ├── ArrayMath.java │ ├── ArrayUtil.java │ ├── FileUtil.java │ ├── ImageInfo.java │ ├── ImageUtil.java │ ├── MathUtil.java │ ├── NetworkUtil.java │ ├── Random.java │ ├── SoundUtil.java │ ├── StringUtil.java │ ├── SystemUtil.java │ ├── ThreadUtil.java │ ├── TypeUtil.java │ ├── URLUtil.java │ └── XMLUtil.java ├── convsym ├── CHANGES.md ├── LICENCE.txt ├── Makefile ├── README.md ├── docs │ └── DEB2_Format.txt ├── include │ ├── ArgvParser.hpp │ ├── BitStream.hpp │ ├── Huffman.hpp │ ├── IO.hpp │ ├── OptsParser.hpp │ └── utils.hpp └── src │ ├── input │ ├── ASM68K_Listing.cpp │ ├── ASM68K_Sym.cpp │ ├── AS_Listing.cpp │ ├── AS_Listing_Experimental.cpp │ ├── InputWrapper.hpp │ ├── Log.cpp │ ├── TXT.cpp │ └── Wrappers.cpp │ ├── main.cpp │ ├── output │ ├── ASM.cpp │ ├── DEB1.cpp │ ├── DEB2.cpp │ ├── Log.cpp │ ├── OutputWrapper.hpp │ └── Wrappers.cpp │ └── util │ └── SymbolTable.hpp ├── lz4w ├── .classpath ├── .project ├── export.jardesc └── src │ └── sgdk │ └── lz4w │ ├── LZ4W.java │ └── Launcher.java ├── rescomp ├── .classpath ├── .gitignore ├── .project ├── export.jardesc └── src │ └── sgdk │ └── rescomp │ ├── Compiler.java │ ├── Launcher.java │ ├── Processor.java │ ├── Resource.java │ ├── processor │ ├── AlignProcessor.java │ ├── BinProcessor.java │ ├── BitmapProcessor.java │ ├── ImageProcessor.java │ ├── MapProcessor.java │ ├── NearProcessor.java │ ├── ObjectsProcessor.java │ ├── PaletteProcessor.java │ ├── SpriteProcessor.java │ ├── TilemapProcessor.java │ ├── TilesetProcessor.java │ ├── UngroupProcessor.java │ ├── WavProcessor.java │ ├── Xgm2Processor.java │ └── XgmProcessor.java │ ├── resource │ ├── Align.java │ ├── Bin.java │ ├── Bitmap.java │ ├── Image.java │ ├── Map.java │ ├── Near.java │ ├── Objects.java │ ├── Palette.java │ ├── Sprite.java │ ├── Tilemap.java │ ├── Tileset.java │ ├── Ungroup.java │ └── internal │ │ ├── Collision.java │ │ ├── SpriteAnimation.java │ │ ├── SpriteFrame.java │ │ └── VDPSprite.java │ ├── tool │ ├── SpriteCutter.java │ └── Util.java │ └── type │ ├── Basics.java │ ├── CellGrid.java │ ├── MapBlock.java │ ├── Metatile.java │ ├── SField.java │ ├── SFieldDef.java │ ├── SObject.java │ ├── SpriteCell.java │ ├── TField.java │ ├── TFieldDef.java │ ├── TMX.java │ ├── TSX.java │ └── Tile.java ├── sizebnd ├── .classpath ├── .gitignore ├── .project ├── export.jardesc └── src │ └── sgdk │ └── sizebnd │ └── Launcher.java ├── sjasm ├── LICENSE.txt ├── README.txt └── src │ ├── Makefile │ ├── direct.cpp │ ├── direct.h │ ├── loose.cpp │ ├── loose.h │ ├── parser.cpp │ ├── parser.h │ ├── piz80.cpp │ ├── piz80.h │ ├── reader.cpp │ ├── reader.h │ ├── sjasm.cpp │ ├── sjasm.h │ ├── sjio.cpp │ ├── sjio.h │ ├── tables.cpp │ ├── tables.h │ └── targetver.h ├── xgm rom builder ├── .classpath ├── .project ├── META-INF │ └── MANIFEST.MF ├── export.jardesc ├── res │ └── rom.bin ├── src │ └── main │ │ ├── CustomHeaderCellRenderer.java │ │ ├── Launcher.java │ │ ├── MainFrame.java │ │ ├── Util.java │ │ ├── VGMFile.java │ │ └── VGMFileModel.java └── xgmtool.exe ├── xgm2tool ├── .classpath ├── .project ├── export.jardesc └── src │ ├── com │ ├── musicg │ │ ├── api │ │ │ ├── ClapApi.java │ │ │ ├── DetectionApi.java │ │ │ └── WhistleApi.java │ │ ├── dsp │ │ │ ├── FastFourierTransform.java │ │ │ ├── LinearInterpolation.java │ │ │ ├── Resampler.java │ │ │ └── WindowFunction.java │ │ ├── experiment │ │ │ ├── math │ │ │ │ └── cluster │ │ │ │ │ ├── Segment.java │ │ │ │ │ └── SegmentCluster.java │ │ │ └── test │ │ │ │ └── Test1.java │ │ ├── fingerprint │ │ │ ├── FingerprintManager.java │ │ │ ├── FingerprintSimilarity.java │ │ │ ├── FingerprintSimilarityComputer.java │ │ │ └── PairManager.java │ │ ├── graphic │ │ │ └── GraphicRender.java │ │ ├── main │ │ │ └── demo │ │ │ │ ├── FingerprintDemo.java │ │ │ │ ├── FingerprintRecognitionDemo.java │ │ │ │ ├── PitchDemo.java │ │ │ │ ├── RenderSpectrogramDemo.java │ │ │ │ ├── RenderWaveformDemo.java │ │ │ │ ├── WaveDemo.java │ │ │ │ └── WhistleApiDemo.java │ │ ├── math │ │ │ ├── quicksort │ │ │ │ ├── QuickSort.java │ │ │ │ ├── QuickSortDouble.java │ │ │ │ ├── QuickSortIndexPreserved.java │ │ │ │ ├── QuickSortInteger.java │ │ │ │ └── QuickSortShort.java │ │ │ ├── rank │ │ │ │ ├── ArrayRankDouble.java │ │ │ │ ├── MapRank.java │ │ │ │ ├── MapRankDouble.java │ │ │ │ ├── MapRankInteger.java │ │ │ │ └── MapRankShort.java │ │ │ └── statistics │ │ │ │ ├── DataCentroid.java │ │ │ │ ├── MathStatistics.java │ │ │ │ ├── Mean.java │ │ │ │ ├── SpectralCentroid.java │ │ │ │ ├── StandardDeviation.java │ │ │ │ ├── Sum.java │ │ │ │ └── ZeroCrossingRate.java │ │ ├── pitch │ │ │ └── PitchHandler.java │ │ ├── processor │ │ │ ├── IntensityProcessor.java │ │ │ ├── ProcessorChain.java │ │ │ ├── RobustIntensityProcessor.java │ │ │ └── TopManyPointsProcessorChain.java │ │ ├── properties │ │ │ └── FingerprintProperties.java │ │ ├── serialization │ │ │ └── ObjectSerializer.java │ │ ├── version │ │ │ └── Version.java │ │ └── wave │ │ │ ├── Wave.java │ │ │ ├── WaveFileManager.java │ │ │ ├── WaveHeader.java │ │ │ ├── WaveTypeDetector.java │ │ │ └── extension │ │ │ ├── NormalizedSampleAmplitudes.java │ │ │ └── Spectrogram.java │ └── sun │ │ └── media │ │ └── sound │ │ └── FFT.java │ └── sgdk │ └── xgm2tool │ ├── Launcher.java │ ├── format │ ├── Command.java │ ├── DataBank.java │ ├── GD3.java │ ├── SampleBank.java │ ├── VGM.java │ ├── VGMCommand.java │ ├── VGMSample.java │ ├── VGMSampleData.java │ ├── XD3.java │ ├── XGM.java │ ├── XGMFMCommand.java │ ├── XGMMulti.java │ ├── XGMPSGCommand.java │ └── XGMSample.java │ ├── gui │ ├── CommandsTable.java │ ├── CustomTabPane.java │ ├── MainGUI.java │ ├── VGMOptTable.java │ ├── VGMTable.java │ ├── WaveformComponent.java │ ├── WaveformPanel.java │ └── XGMTable.java │ ├── struct │ ├── PSGState.java │ ├── Sample.java │ ├── SingleSample.java │ └── YM2612State.java │ └── tool │ ├── Util.java │ └── XGCPacker.java └── xgmtool ├── inc ├── compress.h ├── gd3.h ├── lz77.h ├── psg.h ├── samplebank.h ├── util.h ├── vgm.h ├── vgmcom.h ├── xgc.h ├── xgccom.h ├── xgm.h ├── xgmcom.h ├── xgmsmp.h ├── xgmtool.h └── ym2612.h ├── src ├── CMakeLists.txt ├── compress.c ├── gd3.c ├── lz77.c ├── psg.c ├── samplebank.c ├── util.c ├── vgm.c ├── vgmcom.c ├── xgc.c ├── xgccom.c ├── xgm.c ├── xgmcom.c ├── xgmsmp.c ├── xgmtool.c └── ym2612.c └── xgmtool.cbp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish-doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.github/workflows/publish-doxygen.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.RUNTIME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/COPYING.RUNTIME -------------------------------------------------------------------------------- /bin/apj.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/apj.jar -------------------------------------------------------------------------------- /bin/apj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/apj.txt -------------------------------------------------------------------------------- /bin/ar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/ar.exe -------------------------------------------------------------------------------- /bin/as.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/as.exe -------------------------------------------------------------------------------- /bin/bintos.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/bintos.exe -------------------------------------------------------------------------------- /bin/cc1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/cc1.exe -------------------------------------------------------------------------------- /bin/convsym.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/convsym.exe -------------------------------------------------------------------------------- /bin/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/cp.exe -------------------------------------------------------------------------------- /bin/cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/cpp.exe -------------------------------------------------------------------------------- /bin/gcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/gcc.exe -------------------------------------------------------------------------------- /bin/gdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/gdb.exe -------------------------------------------------------------------------------- /bin/ld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/ld.exe -------------------------------------------------------------------------------- /bin/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /bin/liblto_plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/liblto_plugin.dll -------------------------------------------------------------------------------- /bin/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/libstdc++-6.dll -------------------------------------------------------------------------------- /bin/lto-wrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/lto-wrapper.exe -------------------------------------------------------------------------------- /bin/lto1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/lto1.exe -------------------------------------------------------------------------------- /bin/lz4w.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/lz4w.jar -------------------------------------------------------------------------------- /bin/lz4w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/lz4w.txt -------------------------------------------------------------------------------- /bin/mac68k.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/mac68k.exe -------------------------------------------------------------------------------- /bin/make.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/make.exe -------------------------------------------------------------------------------- /bin/mkdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/mkdir.exe -------------------------------------------------------------------------------- /bin/msys-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/msys-1.0.dll -------------------------------------------------------------------------------- /bin/msys-iconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/msys-iconv-2.dll -------------------------------------------------------------------------------- /bin/msys-intl-8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/msys-intl-8.dll -------------------------------------------------------------------------------- /bin/msys-regex-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/msys-regex-1.dll -------------------------------------------------------------------------------- /bin/msys-termcap-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/msys-termcap-0.dll -------------------------------------------------------------------------------- /bin/nm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/nm.exe -------------------------------------------------------------------------------- /bin/nm2wch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/nm2wch.exe -------------------------------------------------------------------------------- /bin/objcopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/objcopy.exe -------------------------------------------------------------------------------- /bin/objdump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/objdump.exe -------------------------------------------------------------------------------- /bin/rescomp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/rescomp.jar -------------------------------------------------------------------------------- /bin/rescomp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/rescomp.txt -------------------------------------------------------------------------------- /bin/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/rm.exe -------------------------------------------------------------------------------- /bin/sh.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/sh.exe -------------------------------------------------------------------------------- /bin/size.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/size.exe -------------------------------------------------------------------------------- /bin/sizebnd.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/sizebnd.jar -------------------------------------------------------------------------------- /bin/sjasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/sjasm.exe -------------------------------------------------------------------------------- /bin/sjasm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/sjasm.txt -------------------------------------------------------------------------------- /bin/xgm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/xgm.txt -------------------------------------------------------------------------------- /bin/xgm2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/xgm2.txt -------------------------------------------------------------------------------- /bin/xgm2tool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/xgm2tool.jar -------------------------------------------------------------------------------- /bin/xgmRomBuilder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/xgmRomBuilder.jar -------------------------------------------------------------------------------- /bin/xgmRomBuilder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/xgmRomBuilder.txt -------------------------------------------------------------------------------- /bin/xgmtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/bin/xgmtool.exe -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/changelog.txt -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/common.mk -------------------------------------------------------------------------------- /doc/doxyconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/doc/doxyconfig -------------------------------------------------------------------------------- /doc/img/demo_masiaka.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/doc/img/demo_masiaka.gif -------------------------------------------------------------------------------- /doc/img/game_doa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/doc/img/game_doa.gif -------------------------------------------------------------------------------- /doc/img/game_tanzer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/doc/img/game_tanzer.gif -------------------------------------------------------------------------------- /doc/img/game_xenocrisis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/doc/img/game_xenocrisis.gif -------------------------------------------------------------------------------- /inc/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/asm.h -------------------------------------------------------------------------------- /inc/asm_mac.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/asm_mac.i -------------------------------------------------------------------------------- /inc/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/bmp.h -------------------------------------------------------------------------------- /inc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/config.h -------------------------------------------------------------------------------- /inc/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/dma.h -------------------------------------------------------------------------------- /inc/ext/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/console.h -------------------------------------------------------------------------------- /inc/ext/everdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/everdrive.h -------------------------------------------------------------------------------- /inc/ext/fat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/fat16.h -------------------------------------------------------------------------------- /inc/ext/flash-save/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/flash-save/flash.h -------------------------------------------------------------------------------- /inc/ext/flash-save/saveman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/flash-save/saveman.h -------------------------------------------------------------------------------- /inc/ext/link_cable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/link_cable.h -------------------------------------------------------------------------------- /inc/ext/minimusic/minimus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/minimusic/minimus.h -------------------------------------------------------------------------------- /inc/ext/mw/16c550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/16c550.h -------------------------------------------------------------------------------- /inc/ext/mw/gamejolt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/gamejolt.h -------------------------------------------------------------------------------- /inc/ext/mw/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/jsmn.h -------------------------------------------------------------------------------- /inc/ext/mw/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/json.h -------------------------------------------------------------------------------- /inc/ext/mw/lsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/lsd.h -------------------------------------------------------------------------------- /inc/ext/mw/megawifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/megawifi.h -------------------------------------------------------------------------------- /inc/ext/mw/mw-msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/mw-msg.h -------------------------------------------------------------------------------- /inc/ext/mw/ssf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/mw/ssf.h -------------------------------------------------------------------------------- /inc/ext/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ext/stb/stb_sprintf.h -------------------------------------------------------------------------------- /inc/genesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/genesis.h -------------------------------------------------------------------------------- /inc/joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/joy.h -------------------------------------------------------------------------------- /inc/kdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/kdebug.h -------------------------------------------------------------------------------- /inc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/map.h -------------------------------------------------------------------------------- /inc/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/mapper.h -------------------------------------------------------------------------------- /inc/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/maths.h -------------------------------------------------------------------------------- /inc/maths3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/maths3D.h -------------------------------------------------------------------------------- /inc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/memory.h -------------------------------------------------------------------------------- /inc/memory_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/memory_base.h -------------------------------------------------------------------------------- /inc/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/object.h -------------------------------------------------------------------------------- /inc/pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/pal.h -------------------------------------------------------------------------------- /inc/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/pool.h -------------------------------------------------------------------------------- /inc/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/psg.h -------------------------------------------------------------------------------- /inc/snd/pcm/snd_dpcm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/pcm/snd_dpcm2.h -------------------------------------------------------------------------------- /inc/snd/pcm/snd_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/pcm/snd_pcm.h -------------------------------------------------------------------------------- /inc/snd/pcm/snd_pcm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/pcm/snd_pcm4.h -------------------------------------------------------------------------------- /inc/snd/pcm/tab_vol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/pcm/tab_vol.h -------------------------------------------------------------------------------- /inc/snd/smp_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/smp_null.h -------------------------------------------------------------------------------- /inc/snd/smp_null_dpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/smp_null_dpcm.h -------------------------------------------------------------------------------- /inc/snd/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/sound.h -------------------------------------------------------------------------------- /inc/snd/xgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/xgm.h -------------------------------------------------------------------------------- /inc/snd/xgm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/xgm2.h -------------------------------------------------------------------------------- /inc/snd/z80_def.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/z80_def.i80 -------------------------------------------------------------------------------- /inc/snd/z80_fct.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/z80_fct.i80 -------------------------------------------------------------------------------- /inc/snd/z80_mac.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/snd/z80_mac.i80 -------------------------------------------------------------------------------- /inc/sprite_eng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/sprite_eng.h -------------------------------------------------------------------------------- /inc/sprite_eng_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/sprite_eng_legacy.h -------------------------------------------------------------------------------- /inc/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/sram.h -------------------------------------------------------------------------------- /inc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/string.h -------------------------------------------------------------------------------- /inc/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/sys.h -------------------------------------------------------------------------------- /inc/tab_cnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/tab_cnv.h -------------------------------------------------------------------------------- /inc/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/task.h -------------------------------------------------------------------------------- /inc/task_cst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/task_cst.h -------------------------------------------------------------------------------- /inc/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/timer.h -------------------------------------------------------------------------------- /inc/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/tools.h -------------------------------------------------------------------------------- /inc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/types.h -------------------------------------------------------------------------------- /inc/vdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/vdp.h -------------------------------------------------------------------------------- /inc/vdp_bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/vdp_bg.h -------------------------------------------------------------------------------- /inc/vdp_pal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/vdp_pal.h -------------------------------------------------------------------------------- /inc/vdp_spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/vdp_spr.h -------------------------------------------------------------------------------- /inc/vdp_tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/vdp_tile.h -------------------------------------------------------------------------------- /inc/vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/vram.h -------------------------------------------------------------------------------- /inc/ym2612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/ym2612.h -------------------------------------------------------------------------------- /inc/z80_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/inc/z80_ctrl.h -------------------------------------------------------------------------------- /lib/libgcc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/lib/libgcc.a -------------------------------------------------------------------------------- /lib/libmd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/lib/libmd.a -------------------------------------------------------------------------------- /lib/libmd_debug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/lib/libmd_debug.a -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/license.txt -------------------------------------------------------------------------------- /makefile.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/makefile.gen -------------------------------------------------------------------------------- /makelib.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/makelib.gen -------------------------------------------------------------------------------- /md.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/md.ld -------------------------------------------------------------------------------- /project/template/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /project/template/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/.vscode/extensions.json -------------------------------------------------------------------------------- /project/template/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/.vscode/settings.json -------------------------------------------------------------------------------- /project/template/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/inc/main.h -------------------------------------------------------------------------------- /project/template/out/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/out/rom.bin -------------------------------------------------------------------------------- /project/template/res/image/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/res/image/starfield.png -------------------------------------------------------------------------------- /project/template/res/music/actraiser.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/res/music/actraiser.vgm -------------------------------------------------------------------------------- /project/template/res/res_gfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/res/res_gfx.res -------------------------------------------------------------------------------- /project/template/res/res_snd.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/res/res_snd.res -------------------------------------------------------------------------------- /project/template/res/sprite/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/res/sprite/donut.png -------------------------------------------------------------------------------- /project/template/src/boot/rom_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/src/boot/rom_head.c -------------------------------------------------------------------------------- /project/template/src/boot/sega.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/src/boot/sega.s -------------------------------------------------------------------------------- /project/template/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/project/template/src/main.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/readme.md -------------------------------------------------------------------------------- /res/image/font_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/image/font_default.png -------------------------------------------------------------------------------- /res/image/logo_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/image/logo_old.png -------------------------------------------------------------------------------- /res/image/sgdk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/image/sgdk_logo.png -------------------------------------------------------------------------------- /res/image/sgdk_logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/image/sgdk_logo_2.png -------------------------------------------------------------------------------- /res/image/sgdk_logo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/image/sgdk_logo_3.png -------------------------------------------------------------------------------- /res/image/sgdk_logo_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/image/sgdk_logo_4.png -------------------------------------------------------------------------------- /res/libres.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/libres.res -------------------------------------------------------------------------------- /res/sound/stop_xgm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/res/sound/stop_xgm.bin -------------------------------------------------------------------------------- /sample/advanced/tile-animation/res/bga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/advanced/tile-animation/res/bga.png -------------------------------------------------------------------------------- /sample/advanced/tile-animation/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/advanced/tile-animation/src/main.c -------------------------------------------------------------------------------- /sample/basics/hello-world/hello-world.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/hello-world/hello-world.cbp -------------------------------------------------------------------------------- /sample/basics/hello-world/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/hello-world/out/release/rom.bin -------------------------------------------------------------------------------- /sample/basics/hello-world/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/hello-world/src/main.c -------------------------------------------------------------------------------- /sample/basics/hello-world/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/hello-world/src/rom_header.c -------------------------------------------------------------------------------- /sample/basics/image/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/basics/image/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/.vscode/settings.json -------------------------------------------------------------------------------- /sample/basics/image/image.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/image.cbp -------------------------------------------------------------------------------- /sample/basics/image/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/out/release/rom.bin -------------------------------------------------------------------------------- /sample/basics/image/res/gfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/res/gfx.res -------------------------------------------------------------------------------- /sample/basics/image/res/sgdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/res/sgdk.png -------------------------------------------------------------------------------- /sample/basics/image/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/src/main.c -------------------------------------------------------------------------------- /sample/basics/image/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/image/src/rom_header.c -------------------------------------------------------------------------------- /sample/basics/pools/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/basics/pools/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/.vscode/settings.json -------------------------------------------------------------------------------- /sample/basics/pools/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/out/release/rom.bin -------------------------------------------------------------------------------- /sample/basics/pools/pools.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/pools.cbp -------------------------------------------------------------------------------- /sample/basics/pools/res/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/res/boom.png -------------------------------------------------------------------------------- /sample/basics/pools/res/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/res/bullet.png -------------------------------------------------------------------------------- /sample/basics/pools/res/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/res/enemy.png -------------------------------------------------------------------------------- /sample/basics/pools/res/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/res/explosion.wav -------------------------------------------------------------------------------- /sample/basics/pools/res/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/res/player.png -------------------------------------------------------------------------------- /sample/basics/pools/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/res/resources.res -------------------------------------------------------------------------------- /sample/basics/pools/res/shoot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/res/shoot.wav -------------------------------------------------------------------------------- /sample/basics/pools/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/src/main.c -------------------------------------------------------------------------------- /sample/basics/pools/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/pools/src/rom_header.c -------------------------------------------------------------------------------- /sample/basics/tmx-map/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/basics/tmx-map/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/.vscode/settings.json -------------------------------------------------------------------------------- /sample/basics/tmx-map/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/out/release/rom.bin -------------------------------------------------------------------------------- /sample/basics/tmx-map/res/levels/bg_prio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/res/levels/bg_prio.png -------------------------------------------------------------------------------- /sample/basics/tmx-map/res/levels/bg_prio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/res/levels/bg_prio.tsx -------------------------------------------------------------------------------- /sample/basics/tmx-map/res/levels/fg_prio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/res/levels/fg_prio.png -------------------------------------------------------------------------------- /sample/basics/tmx-map/res/levels/fg_prio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/res/levels/fg_prio.tsx -------------------------------------------------------------------------------- /sample/basics/tmx-map/res/levels/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/res/levels/map.tmx -------------------------------------------------------------------------------- /sample/basics/tmx-map/res/maps.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/res/maps.res -------------------------------------------------------------------------------- /sample/basics/tmx-map/res/sprites.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/res/sprites.res -------------------------------------------------------------------------------- /sample/basics/tmx-map/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/src/main.c -------------------------------------------------------------------------------- /sample/basics/tmx-map/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/src/rom_header.c -------------------------------------------------------------------------------- /sample/basics/tmx-map/tmx-map.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-map/tmx-map.cbp -------------------------------------------------------------------------------- /sample/basics/tmx-objects/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/out/release/rom.bin -------------------------------------------------------------------------------- /sample/basics/tmx-objects/res/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/res/objects.h -------------------------------------------------------------------------------- /sample/basics/tmx-objects/res/objects.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/res/objects.res -------------------------------------------------------------------------------- /sample/basics/tmx-objects/res/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/res/sprites.h -------------------------------------------------------------------------------- /sample/basics/tmx-objects/res/sprites.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/res/sprites.res -------------------------------------------------------------------------------- /sample/basics/tmx-objects/res/sprites/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/res/sprites/bot.png -------------------------------------------------------------------------------- /sample/basics/tmx-objects/res/sprites/buzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/res/sprites/buzz.png -------------------------------------------------------------------------------- /sample/basics/tmx-objects/res/sprites/crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/res/sprites/crab.png -------------------------------------------------------------------------------- /sample/basics/tmx-objects/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/src/main.c -------------------------------------------------------------------------------- /sample/basics/tmx-objects/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/src/rom_header.c -------------------------------------------------------------------------------- /sample/basics/tmx-objects/tmx-objects.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/basics/tmx-objects/tmx-objects.cbp -------------------------------------------------------------------------------- /sample/benchmark/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /sample/benchmark/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/benchmark/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/.vscode/settings.json -------------------------------------------------------------------------------- /sample/benchmark/bench.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/bench.cbp -------------------------------------------------------------------------------- /sample/benchmark/inc/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/inc/camera.h -------------------------------------------------------------------------------- /sample/benchmark/inc/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/inc/level.h -------------------------------------------------------------------------------- /sample/benchmark/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/inc/main.h -------------------------------------------------------------------------------- /sample/benchmark/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/out/release/rom.bin -------------------------------------------------------------------------------- /sample/benchmark/res/S1_GHZ1_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/S1_GHZ1_BG.png -------------------------------------------------------------------------------- /sample/benchmark/res/S1_GHZ1_FG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/S1_GHZ1_FG.png -------------------------------------------------------------------------------- /sample/benchmark/res/andor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/andor.png -------------------------------------------------------------------------------- /sample/benchmark/res/cody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/cody.png -------------------------------------------------------------------------------- /sample/benchmark/res/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/donut.png -------------------------------------------------------------------------------- /sample/benchmark/res/flare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/flare.png -------------------------------------------------------------------------------- /sample/benchmark/res/flare_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/flare_16x16.png -------------------------------------------------------------------------------- /sample/benchmark/res/flare_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/flare_32x32.png -------------------------------------------------------------------------------- /sample/benchmark/res/flare_32x32_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/flare_32x32_2.png -------------------------------------------------------------------------------- /sample/benchmark/res/gfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/gfx.res -------------------------------------------------------------------------------- /sample/benchmark/res/guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/guy.png -------------------------------------------------------------------------------- /sample/benchmark/res/haggar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/haggar.png -------------------------------------------------------------------------------- /sample/benchmark/res/md_jap_logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/md_jap_logo_big.png -------------------------------------------------------------------------------- /sample/benchmark/res/md_jap_logo_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/md_jap_logo_med.png -------------------------------------------------------------------------------- /sample/benchmark/res/md_jap_logo_med_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/md_jap_logo_med_x2.png -------------------------------------------------------------------------------- /sample/benchmark/res/md_jap_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/md_jap_logo_small.png -------------------------------------------------------------------------------- /sample/benchmark/res/spr_res.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/res/spr_res.res -------------------------------------------------------------------------------- /sample/benchmark/src/bg_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/bg_test.c -------------------------------------------------------------------------------- /sample/benchmark/src/bmp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/bmp_test.c -------------------------------------------------------------------------------- /sample/benchmark/src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/camera.c -------------------------------------------------------------------------------- /sample/benchmark/src/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/level.c -------------------------------------------------------------------------------- /sample/benchmark/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/main.c -------------------------------------------------------------------------------- /sample/benchmark/src/map_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/map_test.c -------------------------------------------------------------------------------- /sample/benchmark/src/math_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/math_test.c -------------------------------------------------------------------------------- /sample/benchmark/src/math_test_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/math_test_a.s -------------------------------------------------------------------------------- /sample/benchmark/src/mem_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/mem_test.c -------------------------------------------------------------------------------- /sample/benchmark/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/rom_header.c -------------------------------------------------------------------------------- /sample/benchmark/src/spr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/benchmark/src/spr_test.c -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/.vscode/settings.json -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/cube_3D.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/cube_3D.cbp -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/out/release/rom.bin -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/src/main.c -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/src/meshs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/src/meshs.c -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/src/meshs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/src/meshs.h -------------------------------------------------------------------------------- /sample/bitmap/cube-3D/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/cube-3D/src/rom_header.c -------------------------------------------------------------------------------- /sample/bitmap/partic/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/partic/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/bitmap/partic/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/partic/.vscode/settings.json -------------------------------------------------------------------------------- /sample/bitmap/partic/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/partic/out/release/rom.bin -------------------------------------------------------------------------------- /sample/bitmap/partic/partic.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/partic/partic.cbp -------------------------------------------------------------------------------- /sample/bitmap/partic/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/partic/src/main.c -------------------------------------------------------------------------------- /sample/bitmap/partic/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/bitmap/partic/src/rom_header.c -------------------------------------------------------------------------------- /sample/demo/bad-apple/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/demo/bad-apple/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/.vscode/settings.json -------------------------------------------------------------------------------- /sample/demo/bad-apple/bad-apple.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/bad-apple.cbp -------------------------------------------------------------------------------- /sample/demo/bad-apple/inc/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/demo/bad-apple/inc/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/inc/movie.h -------------------------------------------------------------------------------- /sample/demo/bad-apple/inc/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/inc/pcm.h -------------------------------------------------------------------------------- /sample/demo/bad-apple/inc/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/inc/tile.h -------------------------------------------------------------------------------- /sample/demo/bad-apple/inc/tilemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/inc/tilemap.h -------------------------------------------------------------------------------- /sample/demo/bad-apple/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/out/release/rom.bin -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0000.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0001.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0002.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0003.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0004.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0005.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0006.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0007.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0008.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0009.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0010.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0011.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0012.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0013.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0014.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0015.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0016.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0017.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0018.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0019.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0020.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0021.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0022.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0023.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0024.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0025.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0026.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0027.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0028.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0029.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0030.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0031.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0032.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0033.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0034.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0035.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0036.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0037.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0038.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0039.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0040.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0041.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0042.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0043.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0044.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0045.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0046.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0047.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0048.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0049.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0050.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0051.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0052.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0053.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0054.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0055.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0056.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0057.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0058.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0059.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0060.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0061.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0062.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0063.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0064.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0065.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0066.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0067.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0068.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0069.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0070.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0071.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0072.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0073.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0074.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0075.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0076.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0077.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0078.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0079.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0080.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0081.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0082.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0083.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0084.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0084.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0085.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0086.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0087.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0088.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0089.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0089.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0090.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0091.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0092.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0093.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0094.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0094.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0095.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0095.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0096.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0097.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0098.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0098.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0099.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0100.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0101.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0102.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0103.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0104.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0105.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0106.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0107.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0108.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0109.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0110.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0111.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0112.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0113.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0114.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0115.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie/img_T0116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie/img_T0116.png -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/movie_res.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/movie_res.res -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/music.wav -------------------------------------------------------------------------------- /sample/demo/bad-apple/res/sound_res.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/res/sound_res.res -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/main.c -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/movie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/movie.c -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/pcm.c -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/rom_header.c -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/tile.c -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/tilemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/tilemap.c -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/z80_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/z80_drv.h -------------------------------------------------------------------------------- /sample/demo/bad-apple/src/z80_drv.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/bad-apple/src/z80_drv.s80 -------------------------------------------------------------------------------- /sample/demo/starfield-donut/res/donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/starfield-donut/res/donut.png -------------------------------------------------------------------------------- /sample/demo/starfield-donut/res/gfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/starfield-donut/res/gfx.res -------------------------------------------------------------------------------- /sample/demo/starfield-donut/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/starfield-donut/src/main.c -------------------------------------------------------------------------------- /sample/demo/starfield-donut/star.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/demo/starfield-donut/star.cbp -------------------------------------------------------------------------------- /sample/flash-save/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/flash-save/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/flash-save/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/flash-save/.vscode/settings.json -------------------------------------------------------------------------------- /sample/flash-save/flash-save.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/flash-save/flash-save.cbp -------------------------------------------------------------------------------- /sample/flash-save/inc/lipsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/flash-save/inc/lipsum.h -------------------------------------------------------------------------------- /sample/flash-save/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/flash-save/out/release/rom.bin -------------------------------------------------------------------------------- /sample/flash-save/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/flash-save/src/main.c -------------------------------------------------------------------------------- /sample/flash-save/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/flash-save/src/rom_header.c -------------------------------------------------------------------------------- /sample/fx/h-int/scaling/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/scaling/out/release/rom.bin -------------------------------------------------------------------------------- /sample/fx/h-int/scaling/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/scaling/res/resources.res -------------------------------------------------------------------------------- /sample/fx/h-int/scaling/scaling.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/scaling/scaling.cbp -------------------------------------------------------------------------------- /sample/fx/h-int/scaling/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/scaling/src/main.c -------------------------------------------------------------------------------- /sample/fx/h-int/scaling/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/scaling/src/rom_header.c -------------------------------------------------------------------------------- /sample/fx/h-int/wobble/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/wobble/out/release/rom.bin -------------------------------------------------------------------------------- /sample/fx/h-int/wobble/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/wobble/res/resources.res -------------------------------------------------------------------------------- /sample/fx/h-int/wobble/src/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/wobble/src/helpers.c -------------------------------------------------------------------------------- /sample/fx/h-int/wobble/src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/wobble/src/helpers.h -------------------------------------------------------------------------------- /sample/fx/h-int/wobble/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/wobble/src/main.c -------------------------------------------------------------------------------- /sample/fx/h-int/wobble/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/wobble/src/rom_header.c -------------------------------------------------------------------------------- /sample/fx/h-int/wobble/wobble.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/h-int/wobble/wobble.cbp -------------------------------------------------------------------------------- /sample/fx/hilight-shadow/hs.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/hilight-shadow/hs.cbp -------------------------------------------------------------------------------- /sample/fx/hilight-shadow/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/hilight-shadow/src/main.c -------------------------------------------------------------------------------- /sample/fx/hilight-shadow/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/hilight-shadow/src/rom_header.c -------------------------------------------------------------------------------- /sample/fx/scroll/linescroll/linescroll.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/scroll/linescroll/linescroll.cbp -------------------------------------------------------------------------------- /sample/fx/scroll/linescroll/res/gfx/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/scroll/linescroll/res/gfx/bg.png -------------------------------------------------------------------------------- /sample/fx/scroll/linescroll/res/resources.res: -------------------------------------------------------------------------------- 1 | IMAGE bg_img "gfx/bg.png" 2 | -------------------------------------------------------------------------------- /sample/fx/scroll/linescroll/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/scroll/linescroll/src/main.c -------------------------------------------------------------------------------- /sample/fx/silhouette/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/.vscode/settings.json -------------------------------------------------------------------------------- /sample/fx/silhouette/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/out/release/rom.bin -------------------------------------------------------------------------------- /sample/fx/silhouette/res/graphics/bga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/res/graphics/bga.png -------------------------------------------------------------------------------- /sample/fx/silhouette/res/graphics/bgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/res/graphics/bgb.png -------------------------------------------------------------------------------- /sample/fx/silhouette/res/graphics/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/res/graphics/sonic.png -------------------------------------------------------------------------------- /sample/fx/silhouette/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/res/resources.res -------------------------------------------------------------------------------- /sample/fx/silhouette/silhouette.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/silhouette.cbp -------------------------------------------------------------------------------- /sample/fx/silhouette/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/silhouette/src/main.c -------------------------------------------------------------------------------- /sample/fx/sprite-masking/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/sprite-masking/res/resources.res -------------------------------------------------------------------------------- /sample/fx/sprite-masking/sprite-masking.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/sprite-masking/sprite-masking.cbp -------------------------------------------------------------------------------- /sample/fx/sprite-masking/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/sprite-masking/src/main.c -------------------------------------------------------------------------------- /sample/fx/sprite-masking/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/fx/sprite-masking/src/rom_header.c -------------------------------------------------------------------------------- /sample/game/platformer/inc/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/camera.h -------------------------------------------------------------------------------- /sample/game/platformer/inc/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/global.h -------------------------------------------------------------------------------- /sample/game/platformer/inc/levelgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/levelgenerator.h -------------------------------------------------------------------------------- /sample/game/platformer/inc/levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/levels.h -------------------------------------------------------------------------------- /sample/game/platformer/inc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/map.h -------------------------------------------------------------------------------- /sample/game/platformer/inc/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/physics.h -------------------------------------------------------------------------------- /sample/game/platformer/inc/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/player.h -------------------------------------------------------------------------------- /sample/game/platformer/inc/xtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/inc/xtypes.h -------------------------------------------------------------------------------- /sample/game/platformer/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/out/release/rom.bin -------------------------------------------------------------------------------- /sample/game/platformer/platformer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/platformer.cbp -------------------------------------------------------------------------------- /sample/game/platformer/res/images/level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/res/images/level.png -------------------------------------------------------------------------------- /sample/game/platformer/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/res/resources.res -------------------------------------------------------------------------------- /sample/game/platformer/res/sound/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/res/sound/jump.wav -------------------------------------------------------------------------------- /sample/game/platformer/src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/camera.c -------------------------------------------------------------------------------- /sample/game/platformer/src/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/global.c -------------------------------------------------------------------------------- /sample/game/platformer/src/levelgenerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/levelgenerator.c -------------------------------------------------------------------------------- /sample/game/platformer/src/levels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/levels.c -------------------------------------------------------------------------------- /sample/game/platformer/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/main.c -------------------------------------------------------------------------------- /sample/game/platformer/src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/map.c -------------------------------------------------------------------------------- /sample/game/platformer/src/physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/physics.c -------------------------------------------------------------------------------- /sample/game/platformer/src/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/player.c -------------------------------------------------------------------------------- /sample/game/platformer/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/rom_header.c -------------------------------------------------------------------------------- /sample/game/platformer/src/xtypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/platformer/src/xtypes.c -------------------------------------------------------------------------------- /sample/game/sonic/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/game/sonic/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/.vscode/settings.json -------------------------------------------------------------------------------- /sample/game/sonic/inc/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/inc/camera.h -------------------------------------------------------------------------------- /sample/game/sonic/inc/entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/inc/entities.h -------------------------------------------------------------------------------- /sample/game/sonic/inc/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/inc/hud.h -------------------------------------------------------------------------------- /sample/game/sonic/inc/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/inc/level.h -------------------------------------------------------------------------------- /sample/game/sonic/inc/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/inc/player.h -------------------------------------------------------------------------------- /sample/game/sonic/inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/inc/utils.h -------------------------------------------------------------------------------- /sample/game/sonic/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/out/release/rom.bin -------------------------------------------------------------------------------- /sample/game/sonic/res/gfx/S1_GHZ1_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/gfx/S1_GHZ1_BG.png -------------------------------------------------------------------------------- /sample/game/sonic/res/gfx/S1_GHZ1_FG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/gfx/S1_GHZ1_FG.png -------------------------------------------------------------------------------- /sample/game/sonic/res/gfx/bga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/gfx/bga.png -------------------------------------------------------------------------------- /sample/game/sonic/res/gfx/bgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/gfx/bgb.png -------------------------------------------------------------------------------- /sample/game/sonic/res/gfx/rgb_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/gfx/rgb_example.png -------------------------------------------------------------------------------- /sample/game/sonic/res/music/sonic1.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/music/sonic1.vgm -------------------------------------------------------------------------------- /sample/game/sonic/res/res_gfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/res_gfx.res -------------------------------------------------------------------------------- /sample/game/sonic/res/res_sound.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/res_sound.res -------------------------------------------------------------------------------- /sample/game/sonic/res/res_sprite.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/res_sprite.res -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_die.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_explode1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_explode1.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_explode2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_explode2.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_explode3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_explode3.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_jump.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_jumper.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_jumper.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_ring1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_ring1.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_ring2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_ring2.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_ringlost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_ringlost.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_roll.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_roll.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_spinning.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_spinning.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sfx/S1_stop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sfx/S1_stop.wav -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/bar.png -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/enemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/enemies.png -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/enemy01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/enemy01.png -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/enemy02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/enemy02.png -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/gbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/gbar.png -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/jbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/jbar.png -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/sbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/sbar.png -------------------------------------------------------------------------------- /sample/game/sonic/res/sprite/sonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/res/sprite/sonic.png -------------------------------------------------------------------------------- /sample/game/sonic/sonic.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/sonic.cbp -------------------------------------------------------------------------------- /sample/game/sonic/src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/camera.c -------------------------------------------------------------------------------- /sample/game/sonic/src/entities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/entities.c -------------------------------------------------------------------------------- /sample/game/sonic/src/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/hud.c -------------------------------------------------------------------------------- /sample/game/sonic/src/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/level.c -------------------------------------------------------------------------------- /sample/game/sonic/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/main.c -------------------------------------------------------------------------------- /sample/game/sonic/src/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/player.c -------------------------------------------------------------------------------- /sample/game/sonic/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/rom_header.c -------------------------------------------------------------------------------- /sample/game/sonic/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/game/sonic/src/utils.c -------------------------------------------------------------------------------- /sample/joy-test/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/joy-test/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/joy-test/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/joy-test/.vscode/settings.json -------------------------------------------------------------------------------- /sample/joy-test/joy-test.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/joy-test/joy-test.cbp -------------------------------------------------------------------------------- /sample/joy-test/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/joy-test/out/release/rom.bin -------------------------------------------------------------------------------- /sample/joy-test/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/joy-test/src/main.c -------------------------------------------------------------------------------- /sample/joy-test/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/joy-test/src/rom_header.c -------------------------------------------------------------------------------- /sample/linkcable/pacman/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/out/release/rom.bin -------------------------------------------------------------------------------- /sample/linkcable/pacman/pacman.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/pacman.cbp -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/bg/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/bg/map.png -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/bg/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/bg/menu.png -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/bg/sgdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/bg/sgdk.png -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/resources.res -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/sound/eat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/sound/eat.wav -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/sound/sega.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/sound/sega.wav -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/sound/sonic.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/sound/sonic.vgm -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/sprite/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/sprite/door.png -------------------------------------------------------------------------------- /sample/linkcable/pacman/res/sprite/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/res/sprite/red.png -------------------------------------------------------------------------------- /sample/linkcable/pacman/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/src/main.c -------------------------------------------------------------------------------- /sample/linkcable/pacman/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/src/main.h -------------------------------------------------------------------------------- /sample/linkcable/pacman/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/linkcable/pacman/src/rom_header.c -------------------------------------------------------------------------------- /sample/megawifi/basic/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/basic/.vscode/settings.json -------------------------------------------------------------------------------- /sample/megawifi/basic/megawifi-basic.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/basic/megawifi-basic.cbp -------------------------------------------------------------------------------- /sample/megawifi/basic/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/basic/out/release/rom.bin -------------------------------------------------------------------------------- /sample/megawifi/basic/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/basic/src/main.c -------------------------------------------------------------------------------- /sample/megawifi/basic/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/basic/src/rom_header.c -------------------------------------------------------------------------------- /sample/megawifi/menu/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | src/boot/ 3 | .vscode -------------------------------------------------------------------------------- /sample/megawifi/menu/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/.vscode/settings.json -------------------------------------------------------------------------------- /sample/megawifi/menu/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/README.MD -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/.gitkeep -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/datetime.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/flash.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/http.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/ping.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/random.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/tcp.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/udp.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/mw-api/upgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/mw-api/upgrade.h -------------------------------------------------------------------------------- /sample/megawifi/menu/inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/inc/utils.h -------------------------------------------------------------------------------- /sample/megawifi/menu/megawifi-adv.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/megawifi-adv.cbp -------------------------------------------------------------------------------- /sample/megawifi/menu/res/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/res/.gitkeep -------------------------------------------------------------------------------- /sample/megawifi/menu/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/main.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/datetime.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/flash.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/http.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/ping.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/random.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/tcp.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/udp.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/mw-api/upgrade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/mw-api/upgrade.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/rom_header.c -------------------------------------------------------------------------------- /sample/megawifi/menu/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/megawifi/menu/src/utils.c -------------------------------------------------------------------------------- /sample/snd/sound-test/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/.vscode/settings.json -------------------------------------------------------------------------------- /sample/snd/sound-test/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/out/release/rom.bin -------------------------------------------------------------------------------- /sample/snd/sound-test/res/S1_jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/S1_jump.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/S1_stop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/S1_stop.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/bad_apple.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/bad_apple.vgm -------------------------------------------------------------------------------- /sample/snd/sound-test/res/bad_apple_pcm.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/bad_apple_pcm.vgm -------------------------------------------------------------------------------- /sample/snd/sound-test/res/cri.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/cri.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/explode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/explode.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/hat1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/hat1.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/hat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/hat2.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/india_11k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/india_11k.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/india_13k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/india_13k.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/india_16k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/india_16k.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/india_22k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/india_22k.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/india_32k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/india_32k.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/india_8k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/india_8k.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/loop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/loop1.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/loop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/loop2.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/loop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/loop3.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/midnight.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/midnight.vgm -------------------------------------------------------------------------------- /sample/snd/sound-test/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/resources.res -------------------------------------------------------------------------------- /sample/snd/sound-test/res/roadrash.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/roadrash.vgm -------------------------------------------------------------------------------- /sample/snd/sound-test/res/snare1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/snare1.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/snare2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/snare2.wav -------------------------------------------------------------------------------- /sample/snd/sound-test/res/sonic1.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/sonic1.vgm -------------------------------------------------------------------------------- /sample/snd/sound-test/res/sor2.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/sor2.vgm -------------------------------------------------------------------------------- /sample/snd/sound-test/res/sor2.xgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/sor2.xgm -------------------------------------------------------------------------------- /sample/snd/sound-test/res/toy_story.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/res/toy_story.vgm -------------------------------------------------------------------------------- /sample/snd/sound-test/sound.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/sound.cbp -------------------------------------------------------------------------------- /sample/snd/sound-test/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/src/main.c -------------------------------------------------------------------------------- /sample/snd/sound-test/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/sound-test/src/rom_header.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/.vscode/settings.json -------------------------------------------------------------------------------- /sample/snd/xgm-player/inc/log_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/inc/log_tab.h -------------------------------------------------------------------------------- /sample/snd/xgm-player/inc/psg_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/inc/psg_state.h -------------------------------------------------------------------------------- /sample/snd/xgm-player/inc/tracklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/inc/tracklist.h -------------------------------------------------------------------------------- /sample/snd/xgm-player/inc/xd3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/inc/xd3.h -------------------------------------------------------------------------------- /sample/snd/xgm-player/inc/xgm_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/inc/xgm_tool.h -------------------------------------------------------------------------------- /sample/snd/xgm-player/inc/ym_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/inc/ym_state.h -------------------------------------------------------------------------------- /sample/snd/xgm-player/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/out/release/rom.bin -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/Icecap.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/Icecap.vgm -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/Pump It.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/Pump It.vgm -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/Singularity.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/Singularity.vgm -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/bg.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/bonus.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/bonus.vgm -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/cursor.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/gfx.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/gfx.res -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/hat1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/hat1.wav -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/hat2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/hat2.wav -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/left_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/left_right.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/logo.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/music.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/music.res -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/pantry.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/pantry.vgm -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/progress.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/shadow_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/shadow_mask.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/shadow_mask_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/shadow_mask_7.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/shinobi01.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/shinobi01.vgm -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/snare1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/snare1.wav -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/snare2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/snare2.wav -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/sor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/sor1.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/starfield.png -------------------------------------------------------------------------------- /sample/snd/xgm-player/res/voice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/res/voice.wav -------------------------------------------------------------------------------- /sample/snd/xgm-player/src/log_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/src/log_tab.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/src/main.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/src/psg_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/src/psg_state.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/src/rom_header.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/src/tracklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/src/tracklist.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/src/xgm_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/src/xgm_tool.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/src/ym_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/src/ym_state.c -------------------------------------------------------------------------------- /sample/snd/xgm-player/xgm-player.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/snd/xgm-player/xgm-player.cbp -------------------------------------------------------------------------------- /sample/sys/console/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/.vscode/extensions.json -------------------------------------------------------------------------------- /sample/sys/console/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/.vscode/settings.json -------------------------------------------------------------------------------- /sample/sys/console/console.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/console.cbp -------------------------------------------------------------------------------- /sample/sys/console/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/out/release/rom.bin -------------------------------------------------------------------------------- /sample/sys/console/res/R-Type_BG.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/res/R-Type_BG.ilbm -------------------------------------------------------------------------------- /sample/sys/console/res/R-Type_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/res/R-Type_BG.png -------------------------------------------------------------------------------- /sample/sys/console/res/R-Type_FG.ilbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/res/R-Type_FG.ilbm -------------------------------------------------------------------------------- /sample/sys/console/res/R-Type_FG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/res/R-Type_FG.png -------------------------------------------------------------------------------- /sample/sys/console/res/resources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/res/resources.res -------------------------------------------------------------------------------- /sample/sys/console/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/src/main.c -------------------------------------------------------------------------------- /sample/sys/console/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/console/src/rom_header.c -------------------------------------------------------------------------------- /sample/sys/multitasking/multitasking.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/multitasking/multitasking.cbp -------------------------------------------------------------------------------- /sample/sys/multitasking/out/release/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/multitasking/out/release/rom.bin -------------------------------------------------------------------------------- /sample/sys/multitasking/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/multitasking/src/main.c -------------------------------------------------------------------------------- /sample/sys/multitasking/src/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/sample/sys/multitasking/src/rom_header.c -------------------------------------------------------------------------------- /src/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/bmp.c -------------------------------------------------------------------------------- /src/bmp_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/bmp_a.s -------------------------------------------------------------------------------- /src/boot/rom_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/boot/rom_header.c -------------------------------------------------------------------------------- /src/boot/sega.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/boot/sega.s -------------------------------------------------------------------------------- /src/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/dma.c -------------------------------------------------------------------------------- /src/dma_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/dma_a.s -------------------------------------------------------------------------------- /src/error_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/error_a.s -------------------------------------------------------------------------------- /src/ext/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/console.c -------------------------------------------------------------------------------- /src/ext/everdrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/everdrive.c -------------------------------------------------------------------------------- /src/ext/fat16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/fat16.c -------------------------------------------------------------------------------- /src/ext/flash-save/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/flash-save/README.md -------------------------------------------------------------------------------- /src/ext/flash-save/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/flash-save/flash.c -------------------------------------------------------------------------------- /src/ext/flash-save/saveman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/flash-save/saveman.c -------------------------------------------------------------------------------- /src/ext/link_cable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/link_cable.c -------------------------------------------------------------------------------- /src/ext/minimusic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/CHANGELOG.md -------------------------------------------------------------------------------- /src/ext/minimusic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/LICENSE.txt -------------------------------------------------------------------------------- /src/ext/minimusic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/README.md -------------------------------------------------------------------------------- /src/ext/minimusic/data.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/data.z80 -------------------------------------------------------------------------------- /src/ext/minimusic/define.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/define.z80 -------------------------------------------------------------------------------- /src/ext/minimusic/doc/api-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/doc/api-c.md -------------------------------------------------------------------------------- /src/ext/minimusic/doc/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/doc/format.md -------------------------------------------------------------------------------- /src/ext/minimusic/doc/teradrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/doc/teradrive.md -------------------------------------------------------------------------------- /src/ext/minimusic/fm.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/fm.z80 -------------------------------------------------------------------------------- /src/ext/minimusic/main.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/main.z80 -------------------------------------------------------------------------------- /src/ext/minimusic/minimus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/minimus.c -------------------------------------------------------------------------------- /src/ext/minimusic/minimus_drv.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/minimus_drv.s80 -------------------------------------------------------------------------------- /src/ext/minimusic/psg.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/psg.z80 -------------------------------------------------------------------------------- /src/ext/minimusic/track.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/track.z80 -------------------------------------------------------------------------------- /src/ext/minimusic/util.z80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/minimusic/util.z80 -------------------------------------------------------------------------------- /src/ext/mw/16c550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/mw/16c550.c -------------------------------------------------------------------------------- /src/ext/mw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/mw/README.md -------------------------------------------------------------------------------- /src/ext/mw/gamejolt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/mw/gamejolt.c -------------------------------------------------------------------------------- /src/ext/mw/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/mw/json.c -------------------------------------------------------------------------------- /src/ext/mw/lsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/mw/lsd.c -------------------------------------------------------------------------------- /src/ext/mw/megawifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/mw/megawifi.c -------------------------------------------------------------------------------- /src/ext/mw/ssf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ext/mw/ssf.c -------------------------------------------------------------------------------- /src/joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/joy.c -------------------------------------------------------------------------------- /src/kdebug.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/kdebug.s -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/map.c -------------------------------------------------------------------------------- /src/mapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/mapper.c -------------------------------------------------------------------------------- /src/maths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/maths.c -------------------------------------------------------------------------------- /src/maths3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/maths3D.c -------------------------------------------------------------------------------- /src/maths3D_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/maths3D_a.s -------------------------------------------------------------------------------- /src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/memory.c -------------------------------------------------------------------------------- /src/memory_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/memory_a.s -------------------------------------------------------------------------------- /src/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/object.c -------------------------------------------------------------------------------- /src/pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/pal.c -------------------------------------------------------------------------------- /src/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/pool.c -------------------------------------------------------------------------------- /src/psg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/psg.c -------------------------------------------------------------------------------- /src/snd/drv_null.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/drv_null.s80 -------------------------------------------------------------------------------- /src/snd/drv_xgm.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/drv_xgm.s80 -------------------------------------------------------------------------------- /src/snd/pcm/drv_dpcm2.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/pcm/drv_dpcm2.s80 -------------------------------------------------------------------------------- /src/snd/pcm/drv_pcm.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/pcm/drv_pcm.s80 -------------------------------------------------------------------------------- /src/snd/pcm/drv_pcm4.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/pcm/drv_pcm4.s80 -------------------------------------------------------------------------------- /src/snd/pcm/snd_dpcm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/pcm/snd_dpcm2.c -------------------------------------------------------------------------------- /src/snd/pcm/snd_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/pcm/snd_pcm.c -------------------------------------------------------------------------------- /src/snd/pcm/snd_pcm4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/pcm/snd_pcm4.c -------------------------------------------------------------------------------- /src/snd/pcm/tab_vol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/pcm/tab_vol.c -------------------------------------------------------------------------------- /src/snd/smp_null.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/smp_null.s -------------------------------------------------------------------------------- /src/snd/smp_null_dpcm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/smp_null_dpcm.s -------------------------------------------------------------------------------- /src/snd/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/sound.c -------------------------------------------------------------------------------- /src/snd/xgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm.c -------------------------------------------------------------------------------- /src/snd/xgm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2.c -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2.s80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2.s80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_fct.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_fct.i80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_mac.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_mac.i80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_pcm_fct.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_pcm_fct.i80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_pcm_mac.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_pcm_mac.i80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_psg_fct.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_psg_fct.i80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_psg_mac.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_psg_mac.i80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_ym_fct.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_ym_fct.i80 -------------------------------------------------------------------------------- /src/snd/xgm2/drv_xgm2_ym_mac.i80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/snd/xgm2/drv_xgm2_ym_mac.i80 -------------------------------------------------------------------------------- /src/sprite_eng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/sprite_eng.c -------------------------------------------------------------------------------- /src/sprite_eng_legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/sprite_eng_legacy.c -------------------------------------------------------------------------------- /src/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/sram.c -------------------------------------------------------------------------------- /src/sram_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/sram_a.s -------------------------------------------------------------------------------- /src/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/string.c -------------------------------------------------------------------------------- /src/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/sys.c -------------------------------------------------------------------------------- /src/sys_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/sys_a.s -------------------------------------------------------------------------------- /src/tab_cnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/tab_cnv.c -------------------------------------------------------------------------------- /src/tab_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/tab_log10.c -------------------------------------------------------------------------------- /src/tab_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/tab_log2.c -------------------------------------------------------------------------------- /src/tab_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/tab_sin.c -------------------------------------------------------------------------------- /src/tab_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/tab_sqrt.c -------------------------------------------------------------------------------- /src/task.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/task.s -------------------------------------------------------------------------------- /src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/timer.c -------------------------------------------------------------------------------- /src/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/tools.c -------------------------------------------------------------------------------- /src/tools_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/tools_a.s -------------------------------------------------------------------------------- /src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/types.c -------------------------------------------------------------------------------- /src/vdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/vdp.c -------------------------------------------------------------------------------- /src/vdp_bg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/vdp_bg.c -------------------------------------------------------------------------------- /src/vdp_spr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/vdp_spr.c -------------------------------------------------------------------------------- /src/vdp_tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/vdp_tile.c -------------------------------------------------------------------------------- /src/vdp_tile_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/vdp_tile_a.s -------------------------------------------------------------------------------- /src/vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/vram.c -------------------------------------------------------------------------------- /src/ym2612.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/ym2612.c -------------------------------------------------------------------------------- /src/z80_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/src/z80_ctrl.c -------------------------------------------------------------------------------- /tools/apj/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/.classpath -------------------------------------------------------------------------------- /tools/apj/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tools/apj/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/.project -------------------------------------------------------------------------------- /tools/apj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/README.md -------------------------------------------------------------------------------- /tools/apj/export.jardesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/export.jardesc -------------------------------------------------------------------------------- /tools/apj/src/sgdk/aplib/APJ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/src/sgdk/aplib/APJ.java -------------------------------------------------------------------------------- /tools/apj/src/sgdk/aplib/BitReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/src/sgdk/aplib/BitReader.java -------------------------------------------------------------------------------- /tools/apj/src/sgdk/aplib/BitWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/src/sgdk/aplib/BitWriter.java -------------------------------------------------------------------------------- /tools/apj/src/sgdk/aplib/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/apj/src/sgdk/aplib/Launcher.java -------------------------------------------------------------------------------- /tools/bintos/bintos.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/bintos/bintos.cbp -------------------------------------------------------------------------------- /tools/bintos/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/bintos/src/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bintos/src/bintos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/bintos/src/bintos.c -------------------------------------------------------------------------------- /tools/commons/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/.classpath -------------------------------------------------------------------------------- /tools/commons/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/.project -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/ArrayMath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/ArrayMath.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/ArrayUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/ArrayUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/FileUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/ImageInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/ImageInfo.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/ImageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/ImageUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/MathUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/MathUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/Random.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/Random.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/SoundUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/SoundUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/StringUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/SystemUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/SystemUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/ThreadUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/ThreadUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/TypeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/TypeUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/URLUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/URLUtil.java -------------------------------------------------------------------------------- /tools/commons/src/sgdk/tool/XMLUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/commons/src/sgdk/tool/XMLUtil.java -------------------------------------------------------------------------------- /tools/convsym/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/CHANGES.md -------------------------------------------------------------------------------- /tools/convsym/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/LICENCE.txt -------------------------------------------------------------------------------- /tools/convsym/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/Makefile -------------------------------------------------------------------------------- /tools/convsym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/README.md -------------------------------------------------------------------------------- /tools/convsym/docs/DEB2_Format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/docs/DEB2_Format.txt -------------------------------------------------------------------------------- /tools/convsym/include/ArgvParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/include/ArgvParser.hpp -------------------------------------------------------------------------------- /tools/convsym/include/BitStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/include/BitStream.hpp -------------------------------------------------------------------------------- /tools/convsym/include/Huffman.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/include/Huffman.hpp -------------------------------------------------------------------------------- /tools/convsym/include/IO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/include/IO.hpp -------------------------------------------------------------------------------- /tools/convsym/include/OptsParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/include/OptsParser.hpp -------------------------------------------------------------------------------- /tools/convsym/include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/include/utils.hpp -------------------------------------------------------------------------------- /tools/convsym/src/input/ASM68K_Listing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/input/ASM68K_Listing.cpp -------------------------------------------------------------------------------- /tools/convsym/src/input/ASM68K_Sym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/input/ASM68K_Sym.cpp -------------------------------------------------------------------------------- /tools/convsym/src/input/AS_Listing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/input/AS_Listing.cpp -------------------------------------------------------------------------------- /tools/convsym/src/input/InputWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/input/InputWrapper.hpp -------------------------------------------------------------------------------- /tools/convsym/src/input/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/input/Log.cpp -------------------------------------------------------------------------------- /tools/convsym/src/input/TXT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/input/TXT.cpp -------------------------------------------------------------------------------- /tools/convsym/src/input/Wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/input/Wrappers.cpp -------------------------------------------------------------------------------- /tools/convsym/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/main.cpp -------------------------------------------------------------------------------- /tools/convsym/src/output/ASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/output/ASM.cpp -------------------------------------------------------------------------------- /tools/convsym/src/output/DEB1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/output/DEB1.cpp -------------------------------------------------------------------------------- /tools/convsym/src/output/DEB2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/output/DEB2.cpp -------------------------------------------------------------------------------- /tools/convsym/src/output/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/output/Log.cpp -------------------------------------------------------------------------------- /tools/convsym/src/output/OutputWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/output/OutputWrapper.hpp -------------------------------------------------------------------------------- /tools/convsym/src/output/Wrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/output/Wrappers.cpp -------------------------------------------------------------------------------- /tools/convsym/src/util/SymbolTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/convsym/src/util/SymbolTable.hpp -------------------------------------------------------------------------------- /tools/lz4w/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/lz4w/.classpath -------------------------------------------------------------------------------- /tools/lz4w/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/lz4w/.project -------------------------------------------------------------------------------- /tools/lz4w/export.jardesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/lz4w/export.jardesc -------------------------------------------------------------------------------- /tools/lz4w/src/sgdk/lz4w/LZ4W.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/lz4w/src/sgdk/lz4w/LZ4W.java -------------------------------------------------------------------------------- /tools/lz4w/src/sgdk/lz4w/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/lz4w/src/sgdk/lz4w/Launcher.java -------------------------------------------------------------------------------- /tools/rescomp/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/rescomp/.classpath -------------------------------------------------------------------------------- /tools/rescomp/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tools/rescomp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/rescomp/.project -------------------------------------------------------------------------------- /tools/rescomp/export.jardesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/rescomp/export.jardesc -------------------------------------------------------------------------------- /tools/sizebnd/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sizebnd/.classpath -------------------------------------------------------------------------------- /tools/sizebnd/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /tools/sizebnd/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sizebnd/.project -------------------------------------------------------------------------------- /tools/sizebnd/export.jardesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sizebnd/export.jardesc -------------------------------------------------------------------------------- /tools/sjasm/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/LICENSE.txt -------------------------------------------------------------------------------- /tools/sjasm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/README.txt -------------------------------------------------------------------------------- /tools/sjasm/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/Makefile -------------------------------------------------------------------------------- /tools/sjasm/src/direct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/direct.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/direct.h -------------------------------------------------------------------------------- /tools/sjasm/src/loose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/loose.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/loose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/loose.h -------------------------------------------------------------------------------- /tools/sjasm/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/parser.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/parser.h -------------------------------------------------------------------------------- /tools/sjasm/src/piz80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/piz80.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/piz80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/piz80.h -------------------------------------------------------------------------------- /tools/sjasm/src/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/reader.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/reader.h -------------------------------------------------------------------------------- /tools/sjasm/src/sjasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/sjasm.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/sjasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/sjasm.h -------------------------------------------------------------------------------- /tools/sjasm/src/sjio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/sjio.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/sjio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/sjio.h -------------------------------------------------------------------------------- /tools/sjasm/src/tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/tables.cpp -------------------------------------------------------------------------------- /tools/sjasm/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/tables.h -------------------------------------------------------------------------------- /tools/sjasm/src/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/sjasm/src/targetver.h -------------------------------------------------------------------------------- /tools/xgm rom builder/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm rom builder/.classpath -------------------------------------------------------------------------------- /tools/xgm rom builder/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm rom builder/.project -------------------------------------------------------------------------------- /tools/xgm rom builder/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: main.Launcher 3 | -------------------------------------------------------------------------------- /tools/xgm rom builder/export.jardesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm rom builder/export.jardesc -------------------------------------------------------------------------------- /tools/xgm rom builder/res/rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm rom builder/res/rom.bin -------------------------------------------------------------------------------- /tools/xgm rom builder/src/main/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm rom builder/src/main/Util.java -------------------------------------------------------------------------------- /tools/xgm rom builder/src/main/VGMFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm rom builder/src/main/VGMFile.java -------------------------------------------------------------------------------- /tools/xgm rom builder/xgmtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm rom builder/xgmtool.exe -------------------------------------------------------------------------------- /tools/xgm2tool/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm2tool/.classpath -------------------------------------------------------------------------------- /tools/xgm2tool/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm2tool/.project -------------------------------------------------------------------------------- /tools/xgm2tool/export.jardesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgm2tool/export.jardesc -------------------------------------------------------------------------------- /tools/xgmtool/inc/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/compress.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/gd3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/gd3.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/lz77.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/lz77.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/psg.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/samplebank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/samplebank.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/util.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/vgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/vgm.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/vgmcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/vgmcom.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/xgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/xgc.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/xgccom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/xgccom.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/xgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/xgm.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/xgmcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/xgmcom.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/xgmsmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/xgmsmp.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/xgmtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/xgmtool.h -------------------------------------------------------------------------------- /tools/xgmtool/inc/ym2612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/inc/ym2612.h -------------------------------------------------------------------------------- /tools/xgmtool/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/CMakeLists.txt -------------------------------------------------------------------------------- /tools/xgmtool/src/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/compress.c -------------------------------------------------------------------------------- /tools/xgmtool/src/gd3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/gd3.c -------------------------------------------------------------------------------- /tools/xgmtool/src/lz77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/lz77.c -------------------------------------------------------------------------------- /tools/xgmtool/src/psg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/psg.c -------------------------------------------------------------------------------- /tools/xgmtool/src/samplebank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/samplebank.c -------------------------------------------------------------------------------- /tools/xgmtool/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/util.c -------------------------------------------------------------------------------- /tools/xgmtool/src/vgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/vgm.c -------------------------------------------------------------------------------- /tools/xgmtool/src/vgmcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/vgmcom.c -------------------------------------------------------------------------------- /tools/xgmtool/src/xgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/xgc.c -------------------------------------------------------------------------------- /tools/xgmtool/src/xgccom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/xgccom.c -------------------------------------------------------------------------------- /tools/xgmtool/src/xgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/xgm.c -------------------------------------------------------------------------------- /tools/xgmtool/src/xgmcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/xgmcom.c -------------------------------------------------------------------------------- /tools/xgmtool/src/xgmsmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/xgmsmp.c -------------------------------------------------------------------------------- /tools/xgmtool/src/xgmtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/xgmtool.c -------------------------------------------------------------------------------- /tools/xgmtool/src/ym2612.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/src/ym2612.c -------------------------------------------------------------------------------- /tools/xgmtool/xgmtool.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stephane-D/SGDK/HEAD/tools/xgmtool/xgmtool.cbp --------------------------------------------------------------------------------