├── .gitignore ├── Makefile ├── Makefile.common ├── README.md ├── assets ├── pics │ ├── ConsoleFont.bmp │ ├── ConsoleFont.h │ ├── credits.bmp │ ├── gamenowook.bmp │ ├── ldp1450font.bmp │ ├── led0.bmp │ ├── led1.bmp │ ├── led10.bmp │ ├── led11.bmp │ ├── led12.bmp │ ├── led13.bmp │ ├── led14.bmp │ ├── led15.bmp │ ├── led16.bmp │ ├── led2.bmp │ ├── led3.bmp │ ├── led4.bmp │ ├── led5.bmp │ ├── led6.bmp │ ├── led7.bmp │ ├── led8.bmp │ ├── led9.bmp │ ├── lives.bmp │ ├── obsolete │ │ └── ldp1450.bmp │ ├── overlayleds1.bmp │ ├── overlayleds2.bmp │ ├── player1.bmp │ ├── player2.bmp │ └── saveme.bmp └── sound │ ├── ab_alarm1.wav │ ├── ab_alarm2.wav │ ├── ab_alarm3.wav │ ├── ab_alarm4.wav │ ├── ab_enemy.wav │ ├── ab_fire.wav │ ├── ab_ship.wav │ ├── bl_shot.wav │ ├── cliff_correct.wav │ ├── cliff_startup.wav │ ├── cliff_wrong.wav │ ├── dl2_bad.wav │ ├── dl2_coin1.wav │ ├── dl2_coin2.wav │ ├── dl2_coin3.wav │ ├── dl2_coin4.wav │ ├── dl2_error.wav │ ├── dl2_good.wav │ ├── dl2_tic.wav │ ├── dl2_toc.wav │ ├── dl2_warble.wav │ ├── dl2_warn.wav │ ├── dl_accept.wav │ ├── dl_buzz.wav │ ├── dl_credit.wav │ ├── esh_beep.wav │ ├── gr_alarm1.wav │ ├── gr_alarm2.wav │ ├── gr_alarm3.wav │ ├── gr_alarm4.wav │ ├── gr_attack.wav │ ├── gr_cannon.wav │ ├── gr_fire.wav │ ├── gr_mineon.wav │ ├── mach3-01.ogg │ ├── mach3-02.ogg │ ├── mach3-03.ogg │ ├── mach3-04.ogg │ ├── mach3-05.ogg │ ├── mach3-06.ogg │ ├── mach3-07.ogg │ ├── mach3-08.ogg │ ├── mach3-09.ogg │ ├── mach3-11.ogg │ ├── mach3-13.ogg │ ├── mach3-15.ogg │ ├── mach3-19.ogg │ ├── mach3-20.ogg │ ├── mach3-22.ogg │ ├── mach3-33.ogg │ ├── mach3-34.ogg │ ├── mach3-35.ogg │ ├── mach3-36.ogg │ ├── mach3-37.ogg │ ├── mach3-39.ogg │ ├── mach3-40.ogg │ ├── mach3-41.ogg │ ├── mach3-42.ogg │ ├── mach3-43.ogg │ ├── mach3-45.ogg │ ├── mach3-49.ogg │ ├── mach3-null.ogg │ ├── saveme.wav │ ├── sd_coin.wav │ ├── sd_fail.wav │ ├── sd_succeed.wav │ ├── sda_success_hi.wav │ └── sda_success_lo.wav ├── daphne ├── daphne-1.0-src │ ├── cpu │ │ ├── 6809infc.cpp │ │ ├── 6809infc.h │ │ ├── cop.cpp │ │ ├── cop.h │ │ ├── copintf.cpp │ │ ├── copintf.h │ │ ├── cpu-debug.cpp │ │ ├── cpu-debug.h │ │ ├── cpu.cpp │ │ ├── cpu.h │ │ ├── generic_z80.h │ │ ├── m80.cpp │ │ ├── m80.h │ │ ├── m80_internal.h │ │ ├── m80daa.h │ │ ├── m80tables.h │ │ ├── mamewrap.cpp │ │ ├── mamewrap.h │ │ ├── mc6809.cpp │ │ ├── mc6809.h │ │ ├── nes6502.cpp │ │ ├── nes6502.h │ │ ├── nes_6502.cpp │ │ ├── nes_6502.h │ │ ├── types.h │ │ ├── x86 │ │ │ ├── ea.h │ │ │ ├── host.h │ │ │ ├── i86.cpp │ │ │ ├── i86.h │ │ │ ├── i86dasm.cpp │ │ │ ├── i86intf.h │ │ │ ├── i86time.cpp │ │ │ ├── instr86.cpp │ │ │ ├── instr86.h │ │ │ ├── modrm.h │ │ │ └── table86.h │ │ ├── z80.cpp │ │ ├── z80_obsolete.h │ │ └── z80daa.h │ ├── daphne.cpp │ ├── daphne.h │ ├── game │ │ ├── astron.cpp │ │ ├── astron.h │ │ ├── badlands.cpp │ │ ├── badlands.h │ │ ├── bega.cpp │ │ ├── bega.h │ │ ├── cliff.cpp │ │ ├── cliff.h │ │ ├── cobraconv.cpp │ │ ├── cobraconv.h │ │ ├── esh.cpp │ │ ├── esh.h │ │ ├── ffr.cpp │ │ ├── ffr.h │ │ ├── firefox.cpp │ │ ├── firefox.h │ │ ├── game.cpp │ │ ├── game.h │ │ ├── gpworld.cpp │ │ ├── gpworld.h │ │ ├── interstellar.cpp │ │ ├── interstellar.h │ │ ├── lair.cpp │ │ ├── lair.h │ │ ├── lair2.cpp │ │ ├── lair2.h │ │ ├── laireuro.cpp │ │ ├── laireuro.h │ │ ├── lgp.cpp │ │ ├── lgp.h │ │ ├── mach3.cpp │ │ ├── mach3.h │ │ ├── singe.cpp │ │ ├── singe.h │ │ ├── singe │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.h │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ ├── print.c │ │ │ ├── singe_interface.h │ │ │ ├── singeproxy.cpp │ │ │ └── singeproxy.h │ │ ├── singe_static.cpp │ │ ├── starrider.cpp │ │ ├── starrider.h │ │ ├── superd.cpp │ │ ├── superd.h │ │ ├── thayers.cpp │ │ ├── thayers.h │ │ ├── timetrav.cpp │ │ └── timetrav.h │ ├── globals.h │ ├── io │ │ ├── cmdline.cpp │ │ ├── cmdline.h │ │ ├── conout.cpp │ │ ├── conout.h │ │ ├── dll.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── fileparse.cpp │ │ ├── fileparse.h │ │ ├── homedir.cpp │ │ ├── homedir.h │ │ ├── input.cpp │ │ ├── input.h │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── logger_console.cpp │ │ ├── logger_console.h │ │ ├── mpo_fileio.cpp │ │ ├── mpo_fileio.h │ │ ├── mpo_mem.h │ │ ├── numstr.cpp │ │ ├── numstr.h │ │ ├── parallel.cpp │ │ ├── parallel.h │ │ ├── serial.cpp │ │ ├── serial.h │ │ ├── sram.cpp │ │ ├── sram.h │ │ ├── unzip.cpp │ │ └── unzip.h │ ├── ldp-in │ │ ├── ldp1000.cpp │ │ ├── ldp1000.h │ │ ├── ldv1000.cpp │ │ ├── ldv1000.h │ │ ├── pr7820.cpp │ │ ├── pr7820.h │ │ ├── pr8210.cpp │ │ ├── pr8210.h │ │ ├── vip9500sg.cpp │ │ ├── vip9500sg.h │ │ ├── vp380.cpp │ │ ├── vp380.h │ │ ├── vp931.cpp │ │ ├── vp931.h │ │ ├── vp932.cpp │ │ └── vp932.h │ ├── ldp-out │ │ ├── framemod.cpp │ │ ├── framemod.h │ │ ├── hitachi.cpp │ │ ├── hitachi.h │ │ ├── ld-v6000.cpp │ │ ├── ld-v6000.h │ │ ├── ldp-combo.cpp │ │ ├── ldp-combo.h │ │ ├── ldp-vldp-audio.cpp │ │ ├── ldp-vldp.cpp │ │ ├── ldp-vldp.h │ │ ├── ldp.cpp │ │ ├── ldp.h │ │ ├── philips.cpp │ │ ├── philips.h │ │ ├── pioneer.cpp │ │ ├── pioneer.h │ │ ├── sony.cpp │ │ └── sony.h │ ├── scoreboard │ │ ├── hw_scoreboard.cpp │ │ ├── hw_scoreboard.h │ │ ├── img_scoreboard.cpp │ │ ├── img_scoreboard.h │ │ ├── null_scoreboard.cpp │ │ ├── null_scoreboard.h │ │ ├── overlay_scoreboard.cpp │ │ ├── overlay_scoreboard.h │ │ ├── scoreboard_collection.cpp │ │ ├── scoreboard_collection.h │ │ ├── scoreboard_factory.cpp │ │ ├── scoreboard_factory.h │ │ ├── scoreboard_howto.txt │ │ ├── scoreboard_interface.cpp │ │ └── scoreboard_interface.h │ ├── sound │ │ ├── dac.cpp │ │ ├── dac.h │ │ ├── gisound.cpp │ │ ├── gisound.h │ │ ├── mix.cpp │ │ ├── mix.h │ │ ├── pc_beeper.cpp │ │ ├── pc_beeper.h │ │ ├── samples.cpp │ │ ├── samples.h │ │ ├── sn_intf.cpp │ │ ├── sn_intf.h │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── ssi263.cpp │ │ ├── ssi263.h │ │ ├── tms9919-sdl.cpp │ │ ├── tms9919-sdl.hpp │ │ ├── tms9919.cpp │ │ ├── tms9919.hpp │ │ ├── tonegen.cpp │ │ ├── tonegen.h │ │ ├── tqsynth.cpp │ │ └── tqsynth.h │ ├── timer │ │ ├── timer.cpp │ │ └── timer.h │ ├── video │ │ ├── SDL_DrawText.cpp │ │ ├── SDL_DrawText.h │ │ ├── blend.cpp │ │ ├── blend.h │ │ ├── led.cpp │ │ ├── led.h │ │ ├── palette.cpp │ │ ├── palette.h │ │ ├── rgb2yuv.cpp │ │ ├── rgb2yuv.h │ │ ├── tms9128nl.cpp │ │ ├── tms9128nl.h │ │ ├── video.cpp │ │ └── video.h │ └── vldp2 │ │ ├── include │ │ ├── alpha_asm.h │ │ ├── attributes.h │ │ ├── config.h │ │ ├── mmx.h │ │ ├── mpeg2.h │ │ ├── mpeg2convert.h │ │ ├── tendra.h │ │ ├── video_out.h │ │ └── vis.h │ │ ├── libmpeg2 │ │ ├── alloc.c │ │ ├── cpu_accel.c │ │ ├── cpu_state.c │ │ ├── decode.c │ │ ├── header.c │ │ ├── idct.c │ │ ├── idct_mmx.c │ │ ├── motion_comp.c │ │ ├── motion_comp_arm.c │ │ ├── motion_comp_arm_s.S │ │ ├── motion_comp_mmx.c │ │ ├── mpeg2_internal.h │ │ ├── slice.c │ │ └── vlc.h │ │ └── vldp │ │ ├── mpegscan.c │ │ ├── mpegscan.h │ │ ├── vldp.c │ │ ├── vldp.h │ │ ├── vldp_common.h │ │ ├── vldp_internal.c │ │ └── vldp_internal.h ├── include │ ├── SDL.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_config.h │ ├── SDL_config_android.h │ ├── SDL_config_iphoneos.h │ ├── SDL_config_macosx.h │ ├── SDL_config_minimal.h │ ├── SDL_config_windows.h │ ├── SDL_config_winrt.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_mutex.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ └── close_code.h ├── libretro │ ├── libretro.cpp │ ├── libretro.h │ └── libretro_daphne.h ├── main_android.h └── src │ ├── SDL.c │ ├── SDL_error.c │ ├── SDL_error_c.h │ ├── SDL_internal.h │ ├── atomic │ ├── SDL_atomic.c │ └── SDL_spinlock.c │ ├── audio │ ├── SDL_audio_c.h │ ├── SDL_audiocvt.c │ ├── SDL_audiotypecvt.c │ ├── SDL_wave.c │ └── SDL_wave.h │ ├── core │ └── windows │ │ └── SDL_windows.h │ ├── cpuinfo │ └── SDL_cpuinfo.c │ ├── file │ └── SDL_rwops.c │ ├── render │ ├── SDL_yuv_sw.c │ └── SDL_yuv_sw_c.h │ ├── stdlib │ ├── SDL_iconv.c │ └── SDL_string.c │ ├── thread │ ├── SDL_systhread.h │ ├── SDL_thread.c │ ├── SDL_thread_c.h │ ├── generic │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ └── SDL_systls.c │ ├── pthread │ │ ├── SDL_syscond.c │ │ ├── SDL_sysmutex.c │ │ ├── SDL_sysmutex_c.h │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ └── SDL_systls.c │ └── windows │ │ ├── SDL_sysmutex.c │ │ ├── SDL_syssem.c │ │ ├── SDL_systhread.c │ │ ├── SDL_systhread_c.h │ │ └── SDL_systls.c │ ├── timer │ └── libretro │ │ └── SDL_systimer.c │ └── video │ ├── SDL_RLEaccel.c │ ├── SDL_RLEaccel_c.h │ ├── SDL_blit.c │ ├── SDL_blit.h │ ├── SDL_blit_0.c │ ├── SDL_blit_1.c │ ├── SDL_blit_A.c │ ├── SDL_blit_N.c │ ├── SDL_blit_auto.c │ ├── SDL_blit_auto.h │ ├── SDL_blit_copy.c │ ├── SDL_blit_copy.h │ ├── SDL_blit_slow.c │ ├── SDL_blit_slow.h │ ├── SDL_bmp.c │ ├── SDL_fillrect.c │ ├── SDL_pixels.c │ ├── SDL_pixels_c.h │ ├── SDL_rect.c │ ├── SDL_rect_c.h │ ├── SDL_stretch.c │ └── SDL_surface.c ├── deps ├── libogg │ ├── include │ │ └── ogg │ │ │ ├── ogg.h │ │ │ └── os_types.h │ └── src │ │ ├── bitwise.c │ │ └── framing.c ├── libvorbis │ ├── include │ │ └── vorbis │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ └── lib │ │ ├── analysis.c │ │ ├── backends.h │ │ ├── bitrate.c │ │ ├── bitrate.h │ │ ├── block.c │ │ ├── books │ │ ├── coupled │ │ │ ├── res_books_51.h │ │ │ └── res_books_stereo.h │ │ ├── floor │ │ │ └── floor_books.h │ │ └── uncoupled │ │ │ └── res_books_uncoupled.h │ │ ├── codebook.c │ │ ├── codebook.h │ │ ├── codec_internal.h │ │ ├── envelope.c │ │ ├── envelope.h │ │ ├── floor0.c │ │ ├── floor1.c │ │ ├── highlevel.h │ │ ├── info.c │ │ ├── lookup.c │ │ ├── lookup.h │ │ ├── lookup_data.h │ │ ├── lookups.pl │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── mapping0.c │ │ ├── masking.h │ │ ├── mdct.c │ │ ├── mdct.h │ │ ├── misc.h │ │ ├── modes │ │ ├── floor_all.h │ │ ├── psych_11.h │ │ ├── psych_16.h │ │ ├── psych_44.h │ │ ├── psych_8.h │ │ ├── residue_16.h │ │ ├── residue_44.h │ │ ├── residue_44p51.h │ │ ├── residue_44u.h │ │ ├── residue_8.h │ │ ├── setup_11.h │ │ ├── setup_16.h │ │ ├── setup_22.h │ │ ├── setup_32.h │ │ ├── setup_44.h │ │ ├── setup_44p51.h │ │ ├── setup_44u.h │ │ ├── setup_8.h │ │ └── setup_X.h │ │ ├── os.h │ │ ├── psy.c │ │ ├── psy.h │ │ ├── registry.c │ │ ├── registry.h │ │ ├── res0.c │ │ ├── scales.h │ │ ├── sharedbook.c │ │ ├── smallft.c │ │ ├── smallft.h │ │ ├── synthesis.c │ │ ├── vorbisenc.c │ │ ├── vorbisfile.c │ │ ├── window.c │ │ └── window.h └── zlib │ ├── Makefile │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── jni ├── Android.mk └── Application.mk └── link.T /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/Makefile.common -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/README.md -------------------------------------------------------------------------------- /assets/pics/ConsoleFont.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/ConsoleFont.bmp -------------------------------------------------------------------------------- /assets/pics/ConsoleFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/ConsoleFont.h -------------------------------------------------------------------------------- /assets/pics/credits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/credits.bmp -------------------------------------------------------------------------------- /assets/pics/gamenowook.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/gamenowook.bmp -------------------------------------------------------------------------------- /assets/pics/ldp1450font.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/ldp1450font.bmp -------------------------------------------------------------------------------- /assets/pics/led0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led0.bmp -------------------------------------------------------------------------------- /assets/pics/led1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led1.bmp -------------------------------------------------------------------------------- /assets/pics/led10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led10.bmp -------------------------------------------------------------------------------- /assets/pics/led11.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led11.bmp -------------------------------------------------------------------------------- /assets/pics/led12.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led12.bmp -------------------------------------------------------------------------------- /assets/pics/led13.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led13.bmp -------------------------------------------------------------------------------- /assets/pics/led14.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led14.bmp -------------------------------------------------------------------------------- /assets/pics/led15.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led15.bmp -------------------------------------------------------------------------------- /assets/pics/led16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led16.bmp -------------------------------------------------------------------------------- /assets/pics/led2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led2.bmp -------------------------------------------------------------------------------- /assets/pics/led3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led3.bmp -------------------------------------------------------------------------------- /assets/pics/led4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led4.bmp -------------------------------------------------------------------------------- /assets/pics/led5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led5.bmp -------------------------------------------------------------------------------- /assets/pics/led6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led6.bmp -------------------------------------------------------------------------------- /assets/pics/led7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led7.bmp -------------------------------------------------------------------------------- /assets/pics/led8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led8.bmp -------------------------------------------------------------------------------- /assets/pics/led9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/led9.bmp -------------------------------------------------------------------------------- /assets/pics/lives.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/lives.bmp -------------------------------------------------------------------------------- /assets/pics/obsolete/ldp1450.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/obsolete/ldp1450.bmp -------------------------------------------------------------------------------- /assets/pics/overlayleds1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/overlayleds1.bmp -------------------------------------------------------------------------------- /assets/pics/overlayleds2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/overlayleds2.bmp -------------------------------------------------------------------------------- /assets/pics/player1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/player1.bmp -------------------------------------------------------------------------------- /assets/pics/player2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/player2.bmp -------------------------------------------------------------------------------- /assets/pics/saveme.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/pics/saveme.bmp -------------------------------------------------------------------------------- /assets/sound/ab_alarm1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/ab_alarm1.wav -------------------------------------------------------------------------------- /assets/sound/ab_alarm2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/ab_alarm2.wav -------------------------------------------------------------------------------- /assets/sound/ab_alarm3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/ab_alarm3.wav -------------------------------------------------------------------------------- /assets/sound/ab_alarm4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/ab_alarm4.wav -------------------------------------------------------------------------------- /assets/sound/ab_enemy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/ab_enemy.wav -------------------------------------------------------------------------------- /assets/sound/ab_fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/ab_fire.wav -------------------------------------------------------------------------------- /assets/sound/ab_ship.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/ab_ship.wav -------------------------------------------------------------------------------- /assets/sound/bl_shot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/bl_shot.wav -------------------------------------------------------------------------------- /assets/sound/cliff_correct.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/cliff_correct.wav -------------------------------------------------------------------------------- /assets/sound/cliff_startup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/cliff_startup.wav -------------------------------------------------------------------------------- /assets/sound/cliff_wrong.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/cliff_wrong.wav -------------------------------------------------------------------------------- /assets/sound/dl2_bad.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_bad.wav -------------------------------------------------------------------------------- /assets/sound/dl2_coin1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_coin1.wav -------------------------------------------------------------------------------- /assets/sound/dl2_coin2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_coin2.wav -------------------------------------------------------------------------------- /assets/sound/dl2_coin3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_coin3.wav -------------------------------------------------------------------------------- /assets/sound/dl2_coin4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_coin4.wav -------------------------------------------------------------------------------- /assets/sound/dl2_error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_error.wav -------------------------------------------------------------------------------- /assets/sound/dl2_good.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_good.wav -------------------------------------------------------------------------------- /assets/sound/dl2_tic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_tic.wav -------------------------------------------------------------------------------- /assets/sound/dl2_toc.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_toc.wav -------------------------------------------------------------------------------- /assets/sound/dl2_warble.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_warble.wav -------------------------------------------------------------------------------- /assets/sound/dl2_warn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl2_warn.wav -------------------------------------------------------------------------------- /assets/sound/dl_accept.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl_accept.wav -------------------------------------------------------------------------------- /assets/sound/dl_buzz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl_buzz.wav -------------------------------------------------------------------------------- /assets/sound/dl_credit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/dl_credit.wav -------------------------------------------------------------------------------- /assets/sound/esh_beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/esh_beep.wav -------------------------------------------------------------------------------- /assets/sound/gr_alarm1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_alarm1.wav -------------------------------------------------------------------------------- /assets/sound/gr_alarm2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_alarm2.wav -------------------------------------------------------------------------------- /assets/sound/gr_alarm3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_alarm3.wav -------------------------------------------------------------------------------- /assets/sound/gr_alarm4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_alarm4.wav -------------------------------------------------------------------------------- /assets/sound/gr_attack.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_attack.wav -------------------------------------------------------------------------------- /assets/sound/gr_cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_cannon.wav -------------------------------------------------------------------------------- /assets/sound/gr_fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_fire.wav -------------------------------------------------------------------------------- /assets/sound/gr_mineon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/gr_mineon.wav -------------------------------------------------------------------------------- /assets/sound/mach3-01.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-01.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-02.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-02.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-03.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-03.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-04.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-04.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-05.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-05.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-06.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-06.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-07.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-07.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-08.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-08.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-09.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-09.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-11.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-11.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-13.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-13.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-15.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-15.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-19.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-19.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-20.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-20.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-22.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-22.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-33.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-33.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-34.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-34.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-35.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-35.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-36.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-36.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-37.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-37.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-39.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-39.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-40.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-40.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-41.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-41.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-42.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-42.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-43.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-43.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-45.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-45.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-49.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-49.ogg -------------------------------------------------------------------------------- /assets/sound/mach3-null.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/mach3-null.ogg -------------------------------------------------------------------------------- /assets/sound/saveme.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/saveme.wav -------------------------------------------------------------------------------- /assets/sound/sd_coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/sd_coin.wav -------------------------------------------------------------------------------- /assets/sound/sd_fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/sd_fail.wav -------------------------------------------------------------------------------- /assets/sound/sd_succeed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/sd_succeed.wav -------------------------------------------------------------------------------- /assets/sound/sda_success_hi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/sda_success_hi.wav -------------------------------------------------------------------------------- /assets/sound/sda_success_lo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/assets/sound/sda_success_lo.wav -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/6809infc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/6809infc.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/6809infc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/6809infc.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/cop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/cop.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/cop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/cop.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/copintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/copintf.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/copintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/copintf.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/cpu-debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/cpu-debug.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/cpu-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/cpu-debug.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/cpu.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/cpu.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/generic_z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/generic_z80.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/m80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/m80.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/m80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/m80.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/m80_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/m80_internal.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/m80daa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/m80daa.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/m80tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/m80tables.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/mamewrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/mamewrap.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/mamewrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/mamewrap.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/mc6809.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/mc6809.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/mc6809.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/mc6809.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/nes6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/nes6502.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/nes6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/nes6502.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/nes_6502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/nes_6502.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/nes_6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/nes_6502.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/types.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/ea.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/host.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/i86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/i86.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/i86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/i86.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/i86dasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/i86dasm.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/i86intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/i86intf.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/i86time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/i86time.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/instr86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/instr86.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/instr86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/instr86.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/modrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/modrm.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/x86/table86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/x86/table86.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/z80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/z80.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/z80_obsolete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/z80_obsolete.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/cpu/z80daa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/cpu/z80daa.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/daphne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/daphne.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/daphne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/daphne.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/astron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/astron.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/astron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/astron.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/badlands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/badlands.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/badlands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/badlands.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/bega.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/bega.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/bega.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/bega.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/cliff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/cliff.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/cliff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/cliff.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/cobraconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/cobraconv.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/cobraconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/cobraconv.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/esh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/esh.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/esh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/esh.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/ffr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/ffr.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/ffr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/ffr.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/firefox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/firefox.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/firefox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/firefox.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/game.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/game.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/gpworld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/gpworld.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/gpworld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/gpworld.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/interstellar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/interstellar.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/interstellar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/interstellar.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/lair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/lair.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/lair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/lair.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/lair2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/lair2.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/lair2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/lair2.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/laireuro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/laireuro.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/laireuro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/laireuro.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/lgp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/lgp.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/lgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/lgp.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/mach3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/mach3.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/mach3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/mach3.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lapi.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lapi.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lauxlib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lauxlib.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lbaselib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lcode.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lcode.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ldblib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ldebug.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ldebug.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ldo.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ldo.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ldump.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lfunc.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lfunc.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lgc.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lgc.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/linit.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/liolib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/llex.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/llex.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/llimits.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lmathlib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lmem.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lmem.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/loadlib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lobject.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lobject.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lopcodes.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lopcodes.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/loslib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lparser.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lparser.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lstate.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lstate.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lstring.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lstring.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lstrlib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ltable.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ltable.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ltablib.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ltm.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/ltm.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lua.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/luaconf.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lualib.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lundump.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lundump.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lvm.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lvm.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lzio.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/lzio.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/print.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/singe_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/singe_interface.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/singeproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/singeproxy.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe/singeproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe/singeproxy.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/singe_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/singe_static.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/starrider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/starrider.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/starrider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/starrider.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/superd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/superd.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/superd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/superd.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/thayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/thayers.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/thayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/thayers.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/timetrav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/timetrav.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/game/timetrav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/game/timetrav.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/globals.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/cmdline.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/cmdline.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/conout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/conout.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/conout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/conout.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/dll.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/error.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/error.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/fileparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/fileparse.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/fileparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/fileparse.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/homedir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/homedir.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/homedir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/homedir.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/input.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/input.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/logger.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/logger.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/logger_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/logger_console.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/logger_console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/logger_console.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/mpo_fileio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/mpo_fileio.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/mpo_fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/mpo_fileio.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/mpo_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/mpo_mem.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/numstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/numstr.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/numstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/numstr.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/parallel.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/parallel.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/serial.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/serial.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/sram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/sram.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/sram.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/unzip.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/io/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/io/unzip.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/ldp1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/ldp1000.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/ldp1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/ldp1000.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/ldv1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/ldv1000.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/ldv1000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/ldv1000.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/pr7820.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/pr7820.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/pr7820.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/pr7820.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/pr8210.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/pr8210.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/pr8210.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/pr8210.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vip9500sg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vip9500sg.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vip9500sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vip9500sg.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vp380.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vp380.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vp380.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vp380.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vp931.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vp931.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vp931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vp931.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vp932.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vp932.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-in/vp932.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-in/vp932.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/framemod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/framemod.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/framemod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/framemod.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/hitachi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/hitachi.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/hitachi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/hitachi.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ld-v6000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ld-v6000.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ld-v6000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ld-v6000.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ldp-combo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ldp-combo.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ldp-combo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ldp-combo.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ldp-vldp-audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ldp-vldp-audio.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ldp-vldp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ldp-vldp.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ldp-vldp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ldp-vldp.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ldp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ldp.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/ldp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/ldp.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/philips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/philips.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/philips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/philips.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/pioneer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/pioneer.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/pioneer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/pioneer.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/sony.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/sony.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/ldp-out/sony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/ldp-out/sony.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/hw_scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/hw_scoreboard.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/hw_scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/hw_scoreboard.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/img_scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/img_scoreboard.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/img_scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/img_scoreboard.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/null_scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/null_scoreboard.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/null_scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/null_scoreboard.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/overlay_scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/overlay_scoreboard.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/overlay_scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/overlay_scoreboard.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/scoreboard_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/scoreboard_collection.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/scoreboard_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/scoreboard_collection.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/scoreboard_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/scoreboard_factory.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/scoreboard_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/scoreboard_factory.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/scoreboard_howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/scoreboard_howto.txt -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/scoreboard_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/scoreboard_interface.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/scoreboard/scoreboard_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/scoreboard/scoreboard_interface.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/dac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/dac.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/dac.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/gisound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/gisound.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/gisound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/gisound.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/mix.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/mix.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/pc_beeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/pc_beeper.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/pc_beeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/pc_beeper.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/samples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/samples.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/samples.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/sn_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/sn_intf.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/sn_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/sn_intf.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/sound.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/sound.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/ssi263.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/ssi263.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/ssi263.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/ssi263.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tms9919-sdl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tms9919-sdl.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tms9919-sdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tms9919-sdl.hpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tms9919.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tms9919.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tms9919.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tms9919.hpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tonegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tonegen.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tonegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tonegen.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tqsynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tqsynth.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/sound/tqsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/sound/tqsynth.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/timer/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/timer/timer.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/timer/timer.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/SDL_DrawText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/SDL_DrawText.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/SDL_DrawText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/SDL_DrawText.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/blend.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/blend.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/led.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/led.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/palette.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/palette.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/rgb2yuv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/rgb2yuv.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/rgb2yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/rgb2yuv.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/tms9128nl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/tms9128nl.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/tms9128nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/tms9128nl.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/video.cpp -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/video/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/video/video.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/alpha_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/alpha_asm.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/attributes.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/mmx.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/mpeg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/mpeg2.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/mpeg2convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/mpeg2convert.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/tendra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/tendra.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/video_out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/video_out.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/include/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/include/vis.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/alloc.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/cpu_accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/cpu_accel.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/cpu_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/cpu_state.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/decode.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/header.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/idct.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/idct_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/idct_mmx.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp_arm.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp_arm_s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp_arm_s.S -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp_mmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/motion_comp_mmx.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/mpeg2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/mpeg2_internal.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/slice.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/libmpeg2/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/libmpeg2/vlc.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/vldp/mpegscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/vldp/mpegscan.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/vldp/mpegscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/vldp/mpegscan.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/vldp/vldp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/vldp/vldp.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/vldp/vldp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/vldp/vldp.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/vldp/vldp_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/vldp/vldp_common.h -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/vldp/vldp_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/vldp/vldp_internal.c -------------------------------------------------------------------------------- /daphne/daphne-1.0-src/vldp2/vldp/vldp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/daphne-1.0-src/vldp2/vldp/vldp_internal.h -------------------------------------------------------------------------------- /daphne/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL.h -------------------------------------------------------------------------------- /daphne/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_atomic.h -------------------------------------------------------------------------------- /daphne/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_audio.h -------------------------------------------------------------------------------- /daphne/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_bits.h -------------------------------------------------------------------------------- /daphne/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_blendmode.h -------------------------------------------------------------------------------- /daphne/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_config.h -------------------------------------------------------------------------------- /daphne/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_config_android.h -------------------------------------------------------------------------------- /daphne/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /daphne/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /daphne/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /daphne/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_config_windows.h -------------------------------------------------------------------------------- /daphne/include/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_config_winrt.h -------------------------------------------------------------------------------- /daphne/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /daphne/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_endian.h -------------------------------------------------------------------------------- /daphne/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_error.h -------------------------------------------------------------------------------- /daphne/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_joystick.h -------------------------------------------------------------------------------- /daphne/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_keyboard.h -------------------------------------------------------------------------------- /daphne/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_keycode.h -------------------------------------------------------------------------------- /daphne/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_mutex.h -------------------------------------------------------------------------------- /daphne/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_pixels.h -------------------------------------------------------------------------------- /daphne/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_platform.h -------------------------------------------------------------------------------- /daphne/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_rect.h -------------------------------------------------------------------------------- /daphne/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_render.h -------------------------------------------------------------------------------- /daphne/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_rwops.h -------------------------------------------------------------------------------- /daphne/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_scancode.h -------------------------------------------------------------------------------- /daphne/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_stdinc.h -------------------------------------------------------------------------------- /daphne/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_surface.h -------------------------------------------------------------------------------- /daphne/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_thread.h -------------------------------------------------------------------------------- /daphne/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_timer.h -------------------------------------------------------------------------------- /daphne/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_version.h -------------------------------------------------------------------------------- /daphne/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/SDL_video.h -------------------------------------------------------------------------------- /daphne/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/begin_code.h -------------------------------------------------------------------------------- /daphne/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/include/close_code.h -------------------------------------------------------------------------------- /daphne/libretro/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/libretro/libretro.cpp -------------------------------------------------------------------------------- /daphne/libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/libretro/libretro.h -------------------------------------------------------------------------------- /daphne/libretro/libretro_daphne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/libretro/libretro_daphne.h -------------------------------------------------------------------------------- /daphne/main_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/main_android.h -------------------------------------------------------------------------------- /daphne/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/SDL.c -------------------------------------------------------------------------------- /daphne/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/SDL_error.c -------------------------------------------------------------------------------- /daphne/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/SDL_error_c.h -------------------------------------------------------------------------------- /daphne/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/SDL_internal.h -------------------------------------------------------------------------------- /daphne/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /daphne/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /daphne/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /daphne/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /daphne/src/audio/SDL_audiotypecvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/audio/SDL_audiotypecvt.c -------------------------------------------------------------------------------- /daphne/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /daphne/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /daphne/src/core/windows/SDL_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/core/windows/SDL_windows.h -------------------------------------------------------------------------------- /daphne/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /daphne/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /daphne/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /daphne/src/render/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/render/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /daphne/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /daphne/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /daphne/src/thread/SDL_systhread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/SDL_systhread.h -------------------------------------------------------------------------------- /daphne/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /daphne/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /daphne/src/thread/generic/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/generic/SDL_syscond.c -------------------------------------------------------------------------------- /daphne/src/thread/generic/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/generic/SDL_sysmutex.c -------------------------------------------------------------------------------- /daphne/src/thread/generic/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/generic/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /daphne/src/thread/generic/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/generic/SDL_syssem.c -------------------------------------------------------------------------------- /daphne/src/thread/generic/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/generic/SDL_systhread.c -------------------------------------------------------------------------------- /daphne/src/thread/generic/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/generic/SDL_systhread_c.h -------------------------------------------------------------------------------- /daphne/src/thread/generic/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/generic/SDL_systls.c -------------------------------------------------------------------------------- /daphne/src/thread/pthread/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/pthread/SDL_syscond.c -------------------------------------------------------------------------------- /daphne/src/thread/pthread/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/pthread/SDL_sysmutex.c -------------------------------------------------------------------------------- /daphne/src/thread/pthread/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/pthread/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /daphne/src/thread/pthread/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/pthread/SDL_syssem.c -------------------------------------------------------------------------------- /daphne/src/thread/pthread/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/pthread/SDL_systhread.c -------------------------------------------------------------------------------- /daphne/src/thread/pthread/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/pthread/SDL_systhread_c.h -------------------------------------------------------------------------------- /daphne/src/thread/pthread/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/pthread/SDL_systls.c -------------------------------------------------------------------------------- /daphne/src/thread/windows/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/windows/SDL_sysmutex.c -------------------------------------------------------------------------------- /daphne/src/thread/windows/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/windows/SDL_syssem.c -------------------------------------------------------------------------------- /daphne/src/thread/windows/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/windows/SDL_systhread.c -------------------------------------------------------------------------------- /daphne/src/thread/windows/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/windows/SDL_systhread_c.h -------------------------------------------------------------------------------- /daphne/src/thread/windows/SDL_systls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/thread/windows/SDL_systls.c -------------------------------------------------------------------------------- /daphne/src/timer/libretro/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/timer/libretro/SDL_systimer.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_RLEaccel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_RLEaccel_c.h -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit.h -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /daphne/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /daphne/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_rect.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /daphne/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /daphne/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/daphne/src/video/SDL_surface.c -------------------------------------------------------------------------------- /deps/libogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /deps/libogg/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libogg/include/ogg/os_types.h -------------------------------------------------------------------------------- /deps/libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libogg/src/bitwise.c -------------------------------------------------------------------------------- /deps/libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libogg/src/framing.c -------------------------------------------------------------------------------- /deps/libvorbis/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/include/vorbis/codec.h -------------------------------------------------------------------------------- /deps/libvorbis/include/vorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/include/vorbis/vorbisenc.h -------------------------------------------------------------------------------- /deps/libvorbis/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/analysis.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/backends.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/bitrate.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/bitrate.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/block.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/books/coupled/res_books_51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/books/coupled/res_books_51.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/books/coupled/res_books_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/books/coupled/res_books_stereo.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/books/floor/floor_books.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/books/floor/floor_books.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/books/uncoupled/res_books_uncoupled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/books/uncoupled/res_books_uncoupled.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/codebook.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/codebook.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/codec_internal.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/envelope.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/envelope.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/floor0.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/floor1.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/highlevel.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/info.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lookup.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lookup.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/lookup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lookup_data.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/lookups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lookups.pl -------------------------------------------------------------------------------- /deps/libvorbis/lib/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lpc.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lpc.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lsp.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/lsp.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/mapping0.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/masking.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/mdct.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/mdct.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/misc.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/floor_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/floor_all.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/psych_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/psych_11.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/psych_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/psych_16.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/psych_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/psych_44.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/psych_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/psych_8.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/residue_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/residue_16.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/residue_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/residue_44.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/residue_44p51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/residue_44p51.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/residue_44u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/residue_44u.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/residue_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/residue_8.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_11.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_16.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_22.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_32.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_44.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_44p51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_44p51.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_44u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_44u.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_8.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/modes/setup_X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/modes/setup_X.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/os.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/psy.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/psy.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/registry.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/registry.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/res0.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/scales.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/sharedbook.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/smallft.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/smallft.h -------------------------------------------------------------------------------- /deps/libvorbis/lib/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/synthesis.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/vorbisenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/vorbisenc.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/vorbisfile.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/window.c -------------------------------------------------------------------------------- /deps/libvorbis/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/libvorbis/lib/window.h -------------------------------------------------------------------------------- /deps/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/Makefile -------------------------------------------------------------------------------- /deps/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/adler32.c -------------------------------------------------------------------------------- /deps/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/compress.c -------------------------------------------------------------------------------- /deps/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/crc32.c -------------------------------------------------------------------------------- /deps/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/crc32.h -------------------------------------------------------------------------------- /deps/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/deflate.c -------------------------------------------------------------------------------- /deps/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/deflate.h -------------------------------------------------------------------------------- /deps/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/gzclose.c -------------------------------------------------------------------------------- /deps/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/gzguts.h -------------------------------------------------------------------------------- /deps/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/gzlib.c -------------------------------------------------------------------------------- /deps/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/gzread.c -------------------------------------------------------------------------------- /deps/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/gzwrite.c -------------------------------------------------------------------------------- /deps/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/infback.c -------------------------------------------------------------------------------- /deps/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/inffast.c -------------------------------------------------------------------------------- /deps/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/inffast.h -------------------------------------------------------------------------------- /deps/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/inffixed.h -------------------------------------------------------------------------------- /deps/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/inflate.c -------------------------------------------------------------------------------- /deps/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/inflate.h -------------------------------------------------------------------------------- /deps/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/inftrees.c -------------------------------------------------------------------------------- /deps/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/inftrees.h -------------------------------------------------------------------------------- /deps/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/trees.c -------------------------------------------------------------------------------- /deps/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/trees.h -------------------------------------------------------------------------------- /deps/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/uncompr.c -------------------------------------------------------------------------------- /deps/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/zconf.h -------------------------------------------------------------------------------- /deps/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/zlib.h -------------------------------------------------------------------------------- /deps/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/zutil.c -------------------------------------------------------------------------------- /deps/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/deps/zlib/zutil.h -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/daphne/HEAD/link.T --------------------------------------------------------------------------------