├── .gitignore ├── CMakeLists.txt ├── bin ├── PCPaintBoldSmall.ttf ├── fmod.dll ├── libpng12.dll └── zlib1.dll ├── docs ├── gpl.txt └── readme.txt ├── includes ├── directx-aug2009 │ ├── ddraw.h │ └── dinput.h ├── fmod │ ├── fmod.h │ ├── fmod_errors.h │ ├── fmoddyn.h │ └── wincompat.h ├── libpng12 │ ├── png.h │ └── pngconf.h ├── png++-0.2.5 │ ├── color.hpp │ ├── config.hpp │ ├── consumer.hpp │ ├── convert_color_space.hpp │ ├── end_info.hpp │ ├── error.hpp │ ├── ga_pixel.hpp │ ├── generator.hpp │ ├── gray_pixel.hpp │ ├── image.hpp │ ├── image_info.hpp │ ├── index_pixel.hpp │ ├── info.hpp │ ├── info_base.hpp │ ├── io_base.hpp │ ├── packed_pixel.hpp │ ├── palette.hpp │ ├── pixel_buffer.hpp │ ├── pixel_traits.hpp │ ├── png.hpp │ ├── reader.hpp │ ├── require_color_space.hpp │ ├── rgb_pixel.hpp │ ├── rgba_pixel.hpp │ ├── streaming_base.hpp │ ├── tRNS.hpp │ ├── types.hpp │ └── writer.hpp └── zlib │ ├── zconf.h │ └── zlib.h ├── libs ├── libddraw.a ├── libdinput.a ├── libdinput8.a ├── libdxguid.a ├── libfmod.a ├── libpng12.dll.a ├── libwinmm.a └── libz.a ├── license.txt └── src ├── GB.cpp ├── GB.h ├── GB_gfx.cpp ├── GB_gfx.h ├── GB_sound.cpp ├── SGB.cpp ├── SGB.h ├── cheats.cpp ├── cheats.h ├── config.cpp ├── config.h ├── cpu.cpp ├── cpu.h ├── cpucore.h ├── debug.cpp ├── debug.h ├── devices.cpp ├── devices.h ├── directinput.cpp ├── directinput.h ├── hhugboy.ico ├── licnames.h ├── main.cpp ├── main.h ├── mainloop.cpp ├── mainloop.h ├── memory ├── CartDetection.cpp ├── CartDetection.h ├── Cartridge.cpp ├── Cartridge.h ├── GB_ioregs.cpp ├── GB_mem.cpp ├── GbxParser.cpp ├── GbxParser.h ├── MbcType.h ├── linker │ ├── LinkerWrangler.cpp │ └── LinkerWrangler.h └── mbc │ ├── AbstractMbc.cpp │ ├── AbstractMbc.h │ ├── BasicMbc.cpp │ ├── BasicMbc.h │ ├── MbcLicHuc3.cpp │ ├── MbcLicHuc3.h │ ├── MbcLicM161.cpp │ ├── MbcLicM161.h │ ├── MbcLicMk12.cpp │ ├── MbcLicMk12.h │ ├── MbcLicMmm01.cpp │ ├── MbcLicMmm01.h │ ├── MbcLicTama5.cpp │ ├── MbcLicTama5.h │ ├── MbcNin1.cpp │ ├── MbcNin1.h │ ├── MbcNin1Multi.cpp │ ├── MbcNin1Multi.h │ ├── MbcNin2.cpp │ ├── MbcNin2.h │ ├── MbcNin3.cpp │ ├── MbcNin3.h │ ├── MbcNin5.cpp │ ├── MbcNin5.h │ ├── MbcNin5_LogoSwitch.cpp │ ├── MbcNin5_LogoSwitch.h │ ├── MbcNin7.cpp │ ├── MbcNin7.h │ ├── MbcNinCamera.cpp │ ├── MbcNinCamera.h │ ├── MbcUnlBbd.cpp │ ├── MbcUnlBbd.h │ ├── MbcUnlDbzTrans.cpp │ ├── MbcUnlDbzTrans.h │ ├── MbcUnlGgb81.cpp │ ├── MbcUnlGgb81.h │ ├── MbcUnlHitek.cpp │ ├── MbcUnlHitek.h │ ├── MbcUnlLbMulti.cpp │ ├── MbcUnlLbMulti.h │ ├── MbcUnlLiCheng.cpp │ ├── MbcUnlLiCheng.h │ ├── MbcUnlNewGbHk.cpp │ ├── MbcUnlNewGbHk.h │ ├── MbcUnlNtNew.cpp │ ├── MbcUnlNtNew.h │ ├── MbcUnlNtOld1.cpp │ ├── MbcUnlNtOld1.h │ ├── MbcUnlNtOld2.cpp │ ├── MbcUnlNtOld2.h │ ├── MbcUnlPoke2in1.cpp │ ├── MbcUnlPoke2in1.h │ ├── MbcUnlPokeJadeDia.cpp │ ├── MbcUnlPokeJadeDia.h │ ├── MbcUnlRocketGames.cpp │ ├── MbcUnlRocketGames.h │ ├── MbcUnlRockman8.cpp │ ├── MbcUnlRockman8.h │ ├── MbcUnlSachenMMC1.cpp │ ├── MbcUnlSachenMMC1.h │ ├── MbcUnlSachenMMC2.cpp │ ├── MbcUnlSachenMMC2.h │ ├── MbcUnlSintax.cpp │ ├── MbcUnlSintax.h │ ├── MbcUnlSkobLee8.cpp │ ├── MbcUnlSkobLee8.h │ ├── MbcUnlVf001.cpp │ ├── MbcUnlVf001.h │ ├── MbcUnlWisdomTree.cpp │ ├── MbcUnlWisdomTree.h │ ├── RomOnly.cpp │ └── RomOnly.h ├── options.h ├── rendering ├── DirectDrawStuff.cpp ├── DirectDrawStuff.h ├── directdraw.cpp ├── directdraw.h ├── filters │ ├── Filter.cpp │ ├── Filter.h │ ├── filters.cpp │ ├── filters.h │ ├── scale2x.cpp │ ├── scale2x.h │ ├── scale3x.cpp │ └── scale3x.h ├── palette.cpp ├── palette.h ├── render.cpp ├── render.h ├── renderer.cpp └── renderer.h ├── rom.cpp ├── rom.h ├── sound.h ├── state.cpp ├── state.h ├── types.h ├── ui ├── dialogs.cpp ├── dialogs.h ├── dialogs.rc ├── dialogs │ ├── LinkerLog.cpp │ ├── LinkerLog.h │ ├── LinkerLog.rc │ ├── MemorySearcher.cpp │ ├── MemorySearcher.h │ └── MemorySearcher.rc ├── keyactions.cpp ├── keyactions.h ├── keynames.h ├── menu.cpp ├── menu.h ├── menu.rc ├── menuactions.cpp ├── menuactions.h ├── strings.cpp ├── strings.h ├── window.cpp └── window.h ├── version.rc └── zlib ├── unzip.c └── unzip.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /bin/PCPaintBoldSmall.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/bin/PCPaintBoldSmall.ttf -------------------------------------------------------------------------------- /bin/fmod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/bin/fmod.dll -------------------------------------------------------------------------------- /bin/libpng12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/bin/libpng12.dll -------------------------------------------------------------------------------- /bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/bin/zlib1.dll -------------------------------------------------------------------------------- /docs/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/docs/gpl.txt -------------------------------------------------------------------------------- /docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/docs/readme.txt -------------------------------------------------------------------------------- /includes/directx-aug2009/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/directx-aug2009/ddraw.h -------------------------------------------------------------------------------- /includes/directx-aug2009/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/directx-aug2009/dinput.h -------------------------------------------------------------------------------- /includes/fmod/fmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/fmod/fmod.h -------------------------------------------------------------------------------- /includes/fmod/fmod_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/fmod/fmod_errors.h -------------------------------------------------------------------------------- /includes/fmod/fmoddyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/fmod/fmoddyn.h -------------------------------------------------------------------------------- /includes/fmod/wincompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/fmod/wincompat.h -------------------------------------------------------------------------------- /includes/libpng12/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/libpng12/png.h -------------------------------------------------------------------------------- /includes/libpng12/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/libpng12/pngconf.h -------------------------------------------------------------------------------- /includes/png++-0.2.5/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/color.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/config.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/consumer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/consumer.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/convert_color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/convert_color_space.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/end_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/end_info.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/error.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/ga_pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/ga_pixel.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/generator.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/gray_pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/gray_pixel.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/image.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/image_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/image_info.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/index_pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/index_pixel.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/info.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/info_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/info_base.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/io_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/io_base.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/packed_pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/packed_pixel.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/palette.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/pixel_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/pixel_buffer.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/pixel_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/pixel_traits.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/png.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/png.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/reader.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/require_color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/require_color_space.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/rgb_pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/rgb_pixel.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/rgba_pixel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/rgba_pixel.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/streaming_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/streaming_base.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/tRNS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/tRNS.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/types.hpp -------------------------------------------------------------------------------- /includes/png++-0.2.5/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/png++-0.2.5/writer.hpp -------------------------------------------------------------------------------- /includes/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/zlib/zconf.h -------------------------------------------------------------------------------- /includes/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/includes/zlib/zlib.h -------------------------------------------------------------------------------- /libs/libddraw.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libddraw.a -------------------------------------------------------------------------------- /libs/libdinput.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libdinput.a -------------------------------------------------------------------------------- /libs/libdinput8.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libdinput8.a -------------------------------------------------------------------------------- /libs/libdxguid.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libdxguid.a -------------------------------------------------------------------------------- /libs/libfmod.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libfmod.a -------------------------------------------------------------------------------- /libs/libpng12.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libpng12.dll.a -------------------------------------------------------------------------------- /libs/libwinmm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libwinmm.a -------------------------------------------------------------------------------- /libs/libz.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/libs/libz.a -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/license.txt -------------------------------------------------------------------------------- /src/GB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/GB.cpp -------------------------------------------------------------------------------- /src/GB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/GB.h -------------------------------------------------------------------------------- /src/GB_gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/GB_gfx.cpp -------------------------------------------------------------------------------- /src/GB_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/GB_gfx.h -------------------------------------------------------------------------------- /src/GB_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/GB_sound.cpp -------------------------------------------------------------------------------- /src/SGB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/SGB.cpp -------------------------------------------------------------------------------- /src/SGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/SGB.h -------------------------------------------------------------------------------- /src/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/cheats.cpp -------------------------------------------------------------------------------- /src/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/cheats.h -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/config.h -------------------------------------------------------------------------------- /src/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/cpu.cpp -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/cpucore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/cpucore.h -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/devices.cpp -------------------------------------------------------------------------------- /src/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/devices.h -------------------------------------------------------------------------------- /src/directinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/directinput.cpp -------------------------------------------------------------------------------- /src/directinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/directinput.h -------------------------------------------------------------------------------- /src/hhugboy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/hhugboy.ico -------------------------------------------------------------------------------- /src/licnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/licnames.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/main.h -------------------------------------------------------------------------------- /src/mainloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/mainloop.cpp -------------------------------------------------------------------------------- /src/mainloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/mainloop.h -------------------------------------------------------------------------------- /src/memory/CartDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/CartDetection.cpp -------------------------------------------------------------------------------- /src/memory/CartDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/CartDetection.h -------------------------------------------------------------------------------- /src/memory/Cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/Cartridge.cpp -------------------------------------------------------------------------------- /src/memory/Cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/Cartridge.h -------------------------------------------------------------------------------- /src/memory/GB_ioregs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/GB_ioregs.cpp -------------------------------------------------------------------------------- /src/memory/GB_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/GB_mem.cpp -------------------------------------------------------------------------------- /src/memory/GbxParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/GbxParser.cpp -------------------------------------------------------------------------------- /src/memory/GbxParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/GbxParser.h -------------------------------------------------------------------------------- /src/memory/MbcType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/MbcType.h -------------------------------------------------------------------------------- /src/memory/linker/LinkerWrangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/linker/LinkerWrangler.cpp -------------------------------------------------------------------------------- /src/memory/linker/LinkerWrangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/linker/LinkerWrangler.h -------------------------------------------------------------------------------- /src/memory/mbc/AbstractMbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/AbstractMbc.cpp -------------------------------------------------------------------------------- /src/memory/mbc/AbstractMbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/AbstractMbc.h -------------------------------------------------------------------------------- /src/memory/mbc/BasicMbc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/BasicMbc.cpp -------------------------------------------------------------------------------- /src/memory/mbc/BasicMbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/BasicMbc.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicHuc3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicHuc3.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicHuc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicHuc3.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicM161.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicM161.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicM161.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicM161.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicMk12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicMk12.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicMk12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicMk12.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicMmm01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicMmm01.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicMmm01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicMmm01.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicTama5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicTama5.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcLicTama5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcLicTama5.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin1.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin1.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin1Multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin1Multi.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin1Multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin1Multi.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin2.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin2.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin3.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin3.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin5.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin5.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin5_LogoSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin5_LogoSwitch.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin5_LogoSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin5_LogoSwitch.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin7.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNin7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNin7.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcNinCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNinCamera.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcNinCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcNinCamera.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlBbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlBbd.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlBbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlBbd.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlDbzTrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlDbzTrans.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlDbzTrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlDbzTrans.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlGgb81.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlGgb81.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlGgb81.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlGgb81.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlHitek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlHitek.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlHitek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlHitek.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlLbMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlLbMulti.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlLbMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlLbMulti.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlLiCheng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlLiCheng.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlLiCheng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlLiCheng.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNewGbHk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNewGbHk.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNewGbHk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNewGbHk.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNtNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNtNew.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNtNew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNtNew.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNtOld1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNtOld1.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNtOld1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNtOld1.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNtOld2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNtOld2.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlNtOld2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlNtOld2.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlPoke2in1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlPoke2in1.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlPoke2in1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlPoke2in1.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlPokeJadeDia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlPokeJadeDia.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlPokeJadeDia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlPokeJadeDia.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlRocketGames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlRocketGames.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlRocketGames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlRocketGames.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlRockman8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlRockman8.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlRockman8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlRockman8.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSachenMMC1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSachenMMC1.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSachenMMC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSachenMMC1.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSachenMMC2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSachenMMC2.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSachenMMC2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSachenMMC2.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSintax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSintax.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSintax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSintax.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSkobLee8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSkobLee8.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlSkobLee8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlSkobLee8.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlVf001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlVf001.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlVf001.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlVf001.h -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlWisdomTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlWisdomTree.cpp -------------------------------------------------------------------------------- /src/memory/mbc/MbcUnlWisdomTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/MbcUnlWisdomTree.h -------------------------------------------------------------------------------- /src/memory/mbc/RomOnly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/RomOnly.cpp -------------------------------------------------------------------------------- /src/memory/mbc/RomOnly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/memory/mbc/RomOnly.h -------------------------------------------------------------------------------- /src/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/options.h -------------------------------------------------------------------------------- /src/rendering/DirectDrawStuff.cpp: -------------------------------------------------------------------------------- 1 | #include "DirectDrawStuff.h" 2 | -------------------------------------------------------------------------------- /src/rendering/DirectDrawStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/DirectDrawStuff.h -------------------------------------------------------------------------------- /src/rendering/directdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/directdraw.cpp -------------------------------------------------------------------------------- /src/rendering/directdraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/directdraw.h -------------------------------------------------------------------------------- /src/rendering/filters/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/Filter.cpp -------------------------------------------------------------------------------- /src/rendering/filters/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/Filter.h -------------------------------------------------------------------------------- /src/rendering/filters/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/filters.cpp -------------------------------------------------------------------------------- /src/rendering/filters/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/filters.h -------------------------------------------------------------------------------- /src/rendering/filters/scale2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/scale2x.cpp -------------------------------------------------------------------------------- /src/rendering/filters/scale2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/scale2x.h -------------------------------------------------------------------------------- /src/rendering/filters/scale3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/scale3x.cpp -------------------------------------------------------------------------------- /src/rendering/filters/scale3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/filters/scale3x.h -------------------------------------------------------------------------------- /src/rendering/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/palette.cpp -------------------------------------------------------------------------------- /src/rendering/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/palette.h -------------------------------------------------------------------------------- /src/rendering/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/render.cpp -------------------------------------------------------------------------------- /src/rendering/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/render.h -------------------------------------------------------------------------------- /src/rendering/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/renderer.cpp -------------------------------------------------------------------------------- /src/rendering/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rendering/renderer.h -------------------------------------------------------------------------------- /src/rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rom.cpp -------------------------------------------------------------------------------- /src/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/rom.h -------------------------------------------------------------------------------- /src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/sound.h -------------------------------------------------------------------------------- /src/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/state.cpp -------------------------------------------------------------------------------- /src/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/state.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/types.h -------------------------------------------------------------------------------- /src/ui/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs.cpp -------------------------------------------------------------------------------- /src/ui/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs.h -------------------------------------------------------------------------------- /src/ui/dialogs.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs.rc -------------------------------------------------------------------------------- /src/ui/dialogs/LinkerLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs/LinkerLog.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/LinkerLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs/LinkerLog.h -------------------------------------------------------------------------------- /src/ui/dialogs/LinkerLog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs/LinkerLog.rc -------------------------------------------------------------------------------- /src/ui/dialogs/MemorySearcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs/MemorySearcher.cpp -------------------------------------------------------------------------------- /src/ui/dialogs/MemorySearcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs/MemorySearcher.h -------------------------------------------------------------------------------- /src/ui/dialogs/MemorySearcher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/dialogs/MemorySearcher.rc -------------------------------------------------------------------------------- /src/ui/keyactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/keyactions.cpp -------------------------------------------------------------------------------- /src/ui/keyactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/keyactions.h -------------------------------------------------------------------------------- /src/ui/keynames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/keynames.h -------------------------------------------------------------------------------- /src/ui/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/menu.cpp -------------------------------------------------------------------------------- /src/ui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/menu.h -------------------------------------------------------------------------------- /src/ui/menu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/menu.rc -------------------------------------------------------------------------------- /src/ui/menuactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/menuactions.cpp -------------------------------------------------------------------------------- /src/ui/menuactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/menuactions.h -------------------------------------------------------------------------------- /src/ui/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/strings.cpp -------------------------------------------------------------------------------- /src/ui/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/strings.h -------------------------------------------------------------------------------- /src/ui/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/window.cpp -------------------------------------------------------------------------------- /src/ui/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/ui/window.h -------------------------------------------------------------------------------- /src/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/version.rc -------------------------------------------------------------------------------- /src/zlib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/zlib/unzip.c -------------------------------------------------------------------------------- /src/zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzlion/hhugboy/HEAD/src/zlib/unzip.h --------------------------------------------------------------------------------