├── COPYING ├── Makefile.bittboy ├── Makefile.funkeys ├── Makefile.pocketgo ├── README ├── README.md ├── clean.sh ├── common.mk ├── common ├── adaptivesleep.cpp ├── adaptivesleep.h ├── array.h ├── defined_ptr.h ├── rateest.cpp ├── rateest.h ├── resample │ ├── resampler.h │ ├── resamplerinfo.h │ └── src │ │ ├── blackmansinc.h │ │ ├── chainresampler.cpp │ │ ├── chainresampler.h │ │ ├── cic2.h │ │ ├── cic3.h │ │ ├── cic4.h │ │ ├── hammingsinc.h │ │ ├── i0.cpp │ │ ├── i0.h │ │ ├── kaiser50sinc.cpp │ │ ├── kaiser50sinc.h │ │ ├── kaiser70sinc.cpp │ │ ├── kaiser70sinc.h │ │ ├── linint.h │ │ ├── makesinckernel.cpp │ │ ├── makesinckernel.h │ │ ├── polyphasefir.h │ │ ├── rectsinc.h │ │ ├── resamplerinfo.cpp │ │ ├── rshift16_round.h │ │ ├── subresampler.h │ │ ├── u48div.cpp │ │ ├── u48div.h │ │ └── upsampler.h ├── ringbuffer.h ├── scoped_ptr.h ├── skipsched.cpp ├── skipsched.h ├── transfer_ptr.h ├── uncopyable.h ├── usec.h └── videolink │ ├── rgb32conv.cpp │ ├── rgb32conv.h │ ├── vfilterinfo.cpp │ ├── vfilterinfo.h │ └── videolink.h ├── dist ├── funkeys │ └── default.funkey-s.desktop ├── gambatte_dmg.png ├── gambatte_dms.png ├── gambatte_gbc.png ├── gcw0 │ └── default.gcw0.desktop ├── manual.txt └── retrofw │ ├── control │ ├── default.retrofw.desktop │ ├── gambatte.lnk │ ├── gb.gambatte.lnk │ ├── gb.retrofw.desktop │ ├── gbc.gambatte.lnk │ └── gbc.retrofw.desktop ├── gambatte_sdl ├── SConstruct ├── SFont.c ├── SFont.h ├── builddate.h ├── defaultborders.h ├── libmenu.cpp ├── libmenu.h ├── menu.cpp ├── menu.h ├── menusounds.h ├── scaler.c ├── scaler.h ├── sfont_gameboy.h └── src │ ├── audiosink.cpp │ ├── audiosink.h │ ├── blitterwrapper.cpp │ ├── blitterwrapper.h │ ├── gambatte_sdl.cpp │ ├── parser.cpp │ ├── parser.h │ ├── scalebuffer.h │ ├── sdlblitter.cpp │ ├── sdlblitter.h │ ├── str_to_sdlkey.cpp │ ├── str_to_sdlkey.h │ └── usec.cpp └── libgambatte ├── SConstruct ├── include ├── gambatte.h ├── gbint.h ├── inputgetter.h ├── loadres.h └── pakinfo.h └── src ├── bitmap_font.cpp ├── bitmap_font.h ├── bootloader.cpp ├── bootloader.h ├── counterdef.h ├── cpu.cpp ├── cpu.h ├── file ├── file.cpp ├── file.h ├── file_zip.cpp ├── stdfile.h └── unzip │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── unzip.c │ └── unzip.h ├── gambatte.cpp ├── initstate.cpp ├── initstate.h ├── insertion_sort.h ├── interrupter.cpp ├── interrupter.h ├── interruptrequester.cpp ├── interruptrequester.h ├── loadres.cpp ├── mem ├── cartridge.cpp ├── cartridge.h ├── memptrs.cpp ├── memptrs.h ├── pakinfo.cpp ├── pakinfo_internal.h ├── rtc.cpp └── rtc.h ├── memory.cpp ├── memory.h ├── minkeeper.h ├── osd_element.h ├── savestate.h ├── sound.cpp ├── sound.h ├── sound ├── channel1.cpp ├── channel1.h ├── channel2.cpp ├── channel2.h ├── channel3.cpp ├── channel3.h ├── channel4.cpp ├── channel4.h ├── duty_unit.cpp ├── duty_unit.h ├── envelope_unit.cpp ├── envelope_unit.h ├── length_counter.cpp ├── length_counter.h ├── master_disabler.h ├── sound_unit.h └── static_output_tester.h ├── state_osd_elements.cpp ├── state_osd_elements.h ├── statesaver.cpp ├── statesaver.h ├── tima.cpp ├── tima.h ├── video.cpp ├── video.h └── video ├── lcddef.h ├── ly_counter.cpp ├── ly_counter.h ├── lyc_irq.cpp ├── lyc_irq.h ├── m0_irq.h ├── next_m0_time.cpp ├── next_m0_time.h ├── ppu.cpp ├── ppu.h ├── sprite_mapper.cpp └── sprite_mapper.h /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.bittboy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/Makefile.bittboy -------------------------------------------------------------------------------- /Makefile.funkeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/Makefile.funkeys -------------------------------------------------------------------------------- /Makefile.pocketgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/Makefile.pocketgo -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/clean.sh -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common.mk -------------------------------------------------------------------------------- /common/adaptivesleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/adaptivesleep.cpp -------------------------------------------------------------------------------- /common/adaptivesleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/adaptivesleep.h -------------------------------------------------------------------------------- /common/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/array.h -------------------------------------------------------------------------------- /common/defined_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/defined_ptr.h -------------------------------------------------------------------------------- /common/rateest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/rateest.cpp -------------------------------------------------------------------------------- /common/rateest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/rateest.h -------------------------------------------------------------------------------- /common/resample/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/resampler.h -------------------------------------------------------------------------------- /common/resample/resamplerinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/resamplerinfo.h -------------------------------------------------------------------------------- /common/resample/src/blackmansinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/blackmansinc.h -------------------------------------------------------------------------------- /common/resample/src/chainresampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/chainresampler.cpp -------------------------------------------------------------------------------- /common/resample/src/chainresampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/chainresampler.h -------------------------------------------------------------------------------- /common/resample/src/cic2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/cic2.h -------------------------------------------------------------------------------- /common/resample/src/cic3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/cic3.h -------------------------------------------------------------------------------- /common/resample/src/cic4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/cic4.h -------------------------------------------------------------------------------- /common/resample/src/hammingsinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/hammingsinc.h -------------------------------------------------------------------------------- /common/resample/src/i0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/i0.cpp -------------------------------------------------------------------------------- /common/resample/src/i0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/i0.h -------------------------------------------------------------------------------- /common/resample/src/kaiser50sinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/kaiser50sinc.cpp -------------------------------------------------------------------------------- /common/resample/src/kaiser50sinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/kaiser50sinc.h -------------------------------------------------------------------------------- /common/resample/src/kaiser70sinc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/kaiser70sinc.cpp -------------------------------------------------------------------------------- /common/resample/src/kaiser70sinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/kaiser70sinc.h -------------------------------------------------------------------------------- /common/resample/src/linint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/linint.h -------------------------------------------------------------------------------- /common/resample/src/makesinckernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/makesinckernel.cpp -------------------------------------------------------------------------------- /common/resample/src/makesinckernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/makesinckernel.h -------------------------------------------------------------------------------- /common/resample/src/polyphasefir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/polyphasefir.h -------------------------------------------------------------------------------- /common/resample/src/rectsinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/rectsinc.h -------------------------------------------------------------------------------- /common/resample/src/resamplerinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/resamplerinfo.cpp -------------------------------------------------------------------------------- /common/resample/src/rshift16_round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/rshift16_round.h -------------------------------------------------------------------------------- /common/resample/src/subresampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/subresampler.h -------------------------------------------------------------------------------- /common/resample/src/u48div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/u48div.cpp -------------------------------------------------------------------------------- /common/resample/src/u48div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/u48div.h -------------------------------------------------------------------------------- /common/resample/src/upsampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/resample/src/upsampler.h -------------------------------------------------------------------------------- /common/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/ringbuffer.h -------------------------------------------------------------------------------- /common/scoped_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/scoped_ptr.h -------------------------------------------------------------------------------- /common/skipsched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/skipsched.cpp -------------------------------------------------------------------------------- /common/skipsched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/skipsched.h -------------------------------------------------------------------------------- /common/transfer_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/transfer_ptr.h -------------------------------------------------------------------------------- /common/uncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/uncopyable.h -------------------------------------------------------------------------------- /common/usec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/usec.h -------------------------------------------------------------------------------- /common/videolink/rgb32conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/videolink/rgb32conv.cpp -------------------------------------------------------------------------------- /common/videolink/rgb32conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/videolink/rgb32conv.h -------------------------------------------------------------------------------- /common/videolink/vfilterinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/videolink/vfilterinfo.cpp -------------------------------------------------------------------------------- /common/videolink/vfilterinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/videolink/vfilterinfo.h -------------------------------------------------------------------------------- /common/videolink/videolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/common/videolink/videolink.h -------------------------------------------------------------------------------- /dist/funkeys/default.funkey-s.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/funkeys/default.funkey-s.desktop -------------------------------------------------------------------------------- /dist/gambatte_dmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/gambatte_dmg.png -------------------------------------------------------------------------------- /dist/gambatte_dms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/gambatte_dms.png -------------------------------------------------------------------------------- /dist/gambatte_gbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/gambatte_gbc.png -------------------------------------------------------------------------------- /dist/gcw0/default.gcw0.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/gcw0/default.gcw0.desktop -------------------------------------------------------------------------------- /dist/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/manual.txt -------------------------------------------------------------------------------- /dist/retrofw/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/retrofw/control -------------------------------------------------------------------------------- /dist/retrofw/default.retrofw.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/retrofw/default.retrofw.desktop -------------------------------------------------------------------------------- /dist/retrofw/gambatte.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/retrofw/gambatte.lnk -------------------------------------------------------------------------------- /dist/retrofw/gb.gambatte.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/retrofw/gb.gambatte.lnk -------------------------------------------------------------------------------- /dist/retrofw/gb.retrofw.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/retrofw/gb.retrofw.desktop -------------------------------------------------------------------------------- /dist/retrofw/gbc.gambatte.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/retrofw/gbc.gambatte.lnk -------------------------------------------------------------------------------- /dist/retrofw/gbc.retrofw.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/dist/retrofw/gbc.retrofw.desktop -------------------------------------------------------------------------------- /gambatte_sdl/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/SConstruct -------------------------------------------------------------------------------- /gambatte_sdl/SFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/SFont.c -------------------------------------------------------------------------------- /gambatte_sdl/SFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/SFont.h -------------------------------------------------------------------------------- /gambatte_sdl/builddate.h: -------------------------------------------------------------------------------- 1 | #define BUILDDATE "20231203-020959" 2 | -------------------------------------------------------------------------------- /gambatte_sdl/defaultborders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/defaultborders.h -------------------------------------------------------------------------------- /gambatte_sdl/libmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/libmenu.cpp -------------------------------------------------------------------------------- /gambatte_sdl/libmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/libmenu.h -------------------------------------------------------------------------------- /gambatte_sdl/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/menu.cpp -------------------------------------------------------------------------------- /gambatte_sdl/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/menu.h -------------------------------------------------------------------------------- /gambatte_sdl/menusounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/menusounds.h -------------------------------------------------------------------------------- /gambatte_sdl/scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/scaler.c -------------------------------------------------------------------------------- /gambatte_sdl/scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/scaler.h -------------------------------------------------------------------------------- /gambatte_sdl/sfont_gameboy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/sfont_gameboy.h -------------------------------------------------------------------------------- /gambatte_sdl/src/audiosink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/audiosink.cpp -------------------------------------------------------------------------------- /gambatte_sdl/src/audiosink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/audiosink.h -------------------------------------------------------------------------------- /gambatte_sdl/src/blitterwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/blitterwrapper.cpp -------------------------------------------------------------------------------- /gambatte_sdl/src/blitterwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/blitterwrapper.h -------------------------------------------------------------------------------- /gambatte_sdl/src/gambatte_sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/gambatte_sdl.cpp -------------------------------------------------------------------------------- /gambatte_sdl/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/parser.cpp -------------------------------------------------------------------------------- /gambatte_sdl/src/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/parser.h -------------------------------------------------------------------------------- /gambatte_sdl/src/scalebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/scalebuffer.h -------------------------------------------------------------------------------- /gambatte_sdl/src/sdlblitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/sdlblitter.cpp -------------------------------------------------------------------------------- /gambatte_sdl/src/sdlblitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/sdlblitter.h -------------------------------------------------------------------------------- /gambatte_sdl/src/str_to_sdlkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/str_to_sdlkey.cpp -------------------------------------------------------------------------------- /gambatte_sdl/src/str_to_sdlkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/str_to_sdlkey.h -------------------------------------------------------------------------------- /gambatte_sdl/src/usec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/gambatte_sdl/src/usec.cpp -------------------------------------------------------------------------------- /libgambatte/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/SConstruct -------------------------------------------------------------------------------- /libgambatte/include/gambatte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/include/gambatte.h -------------------------------------------------------------------------------- /libgambatte/include/gbint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/include/gbint.h -------------------------------------------------------------------------------- /libgambatte/include/inputgetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/include/inputgetter.h -------------------------------------------------------------------------------- /libgambatte/include/loadres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/include/loadres.h -------------------------------------------------------------------------------- /libgambatte/include/pakinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/include/pakinfo.h -------------------------------------------------------------------------------- /libgambatte/src/bitmap_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/bitmap_font.cpp -------------------------------------------------------------------------------- /libgambatte/src/bitmap_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/bitmap_font.h -------------------------------------------------------------------------------- /libgambatte/src/bootloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/bootloader.cpp -------------------------------------------------------------------------------- /libgambatte/src/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/bootloader.h -------------------------------------------------------------------------------- /libgambatte/src/counterdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/counterdef.h -------------------------------------------------------------------------------- /libgambatte/src/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/cpu.cpp -------------------------------------------------------------------------------- /libgambatte/src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/cpu.h -------------------------------------------------------------------------------- /libgambatte/src/file/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/file.cpp -------------------------------------------------------------------------------- /libgambatte/src/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/file.h -------------------------------------------------------------------------------- /libgambatte/src/file/file_zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/file_zip.cpp -------------------------------------------------------------------------------- /libgambatte/src/file/stdfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/stdfile.h -------------------------------------------------------------------------------- /libgambatte/src/file/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/unzip/crypt.h -------------------------------------------------------------------------------- /libgambatte/src/file/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/unzip/ioapi.c -------------------------------------------------------------------------------- /libgambatte/src/file/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/unzip/ioapi.h -------------------------------------------------------------------------------- /libgambatte/src/file/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/unzip/unzip.c -------------------------------------------------------------------------------- /libgambatte/src/file/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/file/unzip/unzip.h -------------------------------------------------------------------------------- /libgambatte/src/gambatte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/gambatte.cpp -------------------------------------------------------------------------------- /libgambatte/src/initstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/initstate.cpp -------------------------------------------------------------------------------- /libgambatte/src/initstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/initstate.h -------------------------------------------------------------------------------- /libgambatte/src/insertion_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/insertion_sort.h -------------------------------------------------------------------------------- /libgambatte/src/interrupter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/interrupter.cpp -------------------------------------------------------------------------------- /libgambatte/src/interrupter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/interrupter.h -------------------------------------------------------------------------------- /libgambatte/src/interruptrequester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/interruptrequester.cpp -------------------------------------------------------------------------------- /libgambatte/src/interruptrequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/interruptrequester.h -------------------------------------------------------------------------------- /libgambatte/src/loadres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/loadres.cpp -------------------------------------------------------------------------------- /libgambatte/src/mem/cartridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/cartridge.cpp -------------------------------------------------------------------------------- /libgambatte/src/mem/cartridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/cartridge.h -------------------------------------------------------------------------------- /libgambatte/src/mem/memptrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/memptrs.cpp -------------------------------------------------------------------------------- /libgambatte/src/mem/memptrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/memptrs.h -------------------------------------------------------------------------------- /libgambatte/src/mem/pakinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/pakinfo.cpp -------------------------------------------------------------------------------- /libgambatte/src/mem/pakinfo_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/pakinfo_internal.h -------------------------------------------------------------------------------- /libgambatte/src/mem/rtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/rtc.cpp -------------------------------------------------------------------------------- /libgambatte/src/mem/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/mem/rtc.h -------------------------------------------------------------------------------- /libgambatte/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/memory.cpp -------------------------------------------------------------------------------- /libgambatte/src/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/memory.h -------------------------------------------------------------------------------- /libgambatte/src/minkeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/minkeeper.h -------------------------------------------------------------------------------- /libgambatte/src/osd_element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/osd_element.h -------------------------------------------------------------------------------- /libgambatte/src/savestate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/savestate.h -------------------------------------------------------------------------------- /libgambatte/src/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound.h -------------------------------------------------------------------------------- /libgambatte/src/sound/channel1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel1.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound/channel1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel1.h -------------------------------------------------------------------------------- /libgambatte/src/sound/channel2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel2.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound/channel2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel2.h -------------------------------------------------------------------------------- /libgambatte/src/sound/channel3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel3.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound/channel3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel3.h -------------------------------------------------------------------------------- /libgambatte/src/sound/channel4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel4.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound/channel4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/channel4.h -------------------------------------------------------------------------------- /libgambatte/src/sound/duty_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/duty_unit.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound/duty_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/duty_unit.h -------------------------------------------------------------------------------- /libgambatte/src/sound/envelope_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/envelope_unit.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound/envelope_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/envelope_unit.h -------------------------------------------------------------------------------- /libgambatte/src/sound/length_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/length_counter.cpp -------------------------------------------------------------------------------- /libgambatte/src/sound/length_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/length_counter.h -------------------------------------------------------------------------------- /libgambatte/src/sound/master_disabler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/master_disabler.h -------------------------------------------------------------------------------- /libgambatte/src/sound/sound_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/sound_unit.h -------------------------------------------------------------------------------- /libgambatte/src/sound/static_output_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/sound/static_output_tester.h -------------------------------------------------------------------------------- /libgambatte/src/state_osd_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/state_osd_elements.cpp -------------------------------------------------------------------------------- /libgambatte/src/state_osd_elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/state_osd_elements.h -------------------------------------------------------------------------------- /libgambatte/src/statesaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/statesaver.cpp -------------------------------------------------------------------------------- /libgambatte/src/statesaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/statesaver.h -------------------------------------------------------------------------------- /libgambatte/src/tima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/tima.cpp -------------------------------------------------------------------------------- /libgambatte/src/tima.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/tima.h -------------------------------------------------------------------------------- /libgambatte/src/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video.cpp -------------------------------------------------------------------------------- /libgambatte/src/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video.h -------------------------------------------------------------------------------- /libgambatte/src/video/lcddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/lcddef.h -------------------------------------------------------------------------------- /libgambatte/src/video/ly_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/ly_counter.cpp -------------------------------------------------------------------------------- /libgambatte/src/video/ly_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/ly_counter.h -------------------------------------------------------------------------------- /libgambatte/src/video/lyc_irq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/lyc_irq.cpp -------------------------------------------------------------------------------- /libgambatte/src/video/lyc_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/lyc_irq.h -------------------------------------------------------------------------------- /libgambatte/src/video/m0_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/m0_irq.h -------------------------------------------------------------------------------- /libgambatte/src/video/next_m0_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/next_m0_time.cpp -------------------------------------------------------------------------------- /libgambatte/src/video/next_m0_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/next_m0_time.h -------------------------------------------------------------------------------- /libgambatte/src/video/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/ppu.cpp -------------------------------------------------------------------------------- /libgambatte/src/video/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/ppu.h -------------------------------------------------------------------------------- /libgambatte/src/video/sprite_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/sprite_mapper.cpp -------------------------------------------------------------------------------- /libgambatte/src/video/sprite_mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bardeci/gambatte-dms/HEAD/libgambatte/src/video/sprite_mapper.h --------------------------------------------------------------------------------