├── .gitignore ├── LICENSE ├── README.md ├── clean.sh ├── engine ├── COMPILING ├── LICENSE ├── Makefile ├── README ├── android │ ├── AndroidManifest.xml │ ├── Readthis.txt │ ├── build.bat │ ├── build.xml │ ├── console.bat │ ├── copy_and_rename_me_to_local.properties │ ├── install.bat │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── openbor │ │ │ ├── Android.mk │ │ │ ├── SDL_android_main.cpp │ │ │ ├── button_png_800x480.h │ │ │ ├── include │ │ │ ├── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── png │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ └── pnglibconf.h │ │ │ ├── sdl │ │ │ │ ├── SDL.h │ │ │ │ ├── SDL_assert.h │ │ │ │ ├── SDL_atomic.h │ │ │ │ ├── SDL_audio.h │ │ │ │ ├── SDL_bits.h │ │ │ │ ├── SDL_blendmode.h │ │ │ │ ├── SDL_clipboard.h │ │ │ │ ├── SDL_config.h │ │ │ │ ├── SDL_config_android.h │ │ │ │ ├── SDL_config_iphoneos.h │ │ │ │ ├── SDL_config_macosx.h │ │ │ │ ├── SDL_config_minimal.h │ │ │ │ ├── SDL_config_pandora.h │ │ │ │ ├── SDL_config_psp.h │ │ │ │ ├── SDL_config_windows.h │ │ │ │ ├── SDL_config_wiz.h │ │ │ │ ├── SDL_copying.h │ │ │ │ ├── SDL_cpuinfo.h │ │ │ │ ├── SDL_endian.h │ │ │ │ ├── SDL_error.h │ │ │ │ ├── SDL_events.h │ │ │ │ ├── SDL_filesystem.h │ │ │ │ ├── SDL_gamecontroller.h │ │ │ │ ├── SDL_gesture.h │ │ │ │ ├── SDL_haptic.h │ │ │ │ ├── SDL_hints.h │ │ │ │ ├── SDL_joystick.h │ │ │ │ ├── SDL_keyboard.h │ │ │ │ ├── SDL_keycode.h │ │ │ │ ├── SDL_loadso.h │ │ │ │ ├── SDL_log.h │ │ │ │ ├── SDL_main.h │ │ │ │ ├── SDL_messagebox.h │ │ │ │ ├── SDL_mouse.h │ │ │ │ ├── SDL_mutex.h │ │ │ │ ├── SDL_name.h │ │ │ │ ├── SDL_opengl.h │ │ │ │ ├── SDL_opengles.h │ │ │ │ ├── SDL_opengles2.h │ │ │ │ ├── SDL_pixels.h │ │ │ │ ├── SDL_platform.h │ │ │ │ ├── SDL_power.h │ │ │ │ ├── SDL_quit.h │ │ │ │ ├── SDL_rect.h │ │ │ │ ├── SDL_render.h │ │ │ │ ├── SDL_revision.h │ │ │ │ ├── SDL_rwops.h │ │ │ │ ├── SDL_scancode.h │ │ │ │ ├── SDL_shape.h │ │ │ │ ├── SDL_stdinc.h │ │ │ │ ├── SDL_surface.h │ │ │ │ ├── SDL_system.h │ │ │ │ ├── SDL_syswm.h │ │ │ │ ├── SDL_test.h │ │ │ │ ├── SDL_test_assert.h │ │ │ │ ├── SDL_test_common.h │ │ │ │ ├── SDL_test_compare.h │ │ │ │ ├── SDL_test_crc32.h │ │ │ │ ├── SDL_test_font.h │ │ │ │ ├── SDL_test_fuzzer.h │ │ │ │ ├── SDL_test_harness.h │ │ │ │ ├── SDL_test_images.h │ │ │ │ ├── SDL_test_log.h │ │ │ │ ├── SDL_test_md5.h │ │ │ │ ├── SDL_test_random.h │ │ │ │ ├── SDL_thread.h │ │ │ │ ├── SDL_timer.h │ │ │ │ ├── SDL_touch.h │ │ │ │ ├── SDL_types.h │ │ │ │ ├── SDL_version.h │ │ │ │ ├── SDL_video.h │ │ │ │ ├── begin_code.h │ │ │ │ └── close_code.h │ │ │ └── vorbis │ │ │ │ ├── codec.h │ │ │ │ ├── vorbisenc.h │ │ │ │ └── vorbisfile.h │ │ │ ├── jniutils.cpp │ │ │ ├── lib │ │ │ └── armeabi-v7a │ │ │ │ ├── libSDL2.so │ │ │ │ ├── libogg.a │ │ │ │ ├── libpng.a │ │ │ │ ├── libvorbis.a │ │ │ │ └── old_libs │ │ │ │ ├── libSDL2.old │ │ │ │ ├── libogg.old │ │ │ │ └── libvorbis.old │ │ │ └── video.c │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── org │ │ └── libsdl │ │ └── app │ │ └── SDLActivity.java ├── build.bat ├── build.sh ├── codeblocks │ ├── OpenBOR.Windows.cbp │ └── OpenBOR.Windows.layout ├── darwin.sh ├── dc │ ├── bios.h │ ├── bios.s │ ├── control.c │ ├── control.h │ ├── dcport.c │ ├── dcport.h │ ├── gdrom.c │ ├── gdrom.h │ ├── menu │ │ └── menu.pak │ ├── sblaster.c │ ├── sblaster.h │ ├── timer.c │ ├── vga.h │ ├── video.c │ └── video.h ├── environ.sh ├── fixindentation.sh ├── fixtrailingwhitespace.sh ├── openbor.c ├── openbor.h ├── openborscript.c ├── openborscript.h ├── psp │ ├── audiodrv.c │ ├── audiodrv.h │ ├── build.mak │ ├── build_prx.mak │ ├── control.c │ ├── control.h │ ├── control │ │ ├── Makefile │ │ ├── control.S │ │ ├── control.exp │ │ ├── control.h │ │ ├── control.prx │ │ └── main.c │ ├── dvemgr │ │ ├── dvemgr.S │ │ ├── dvemgr.h │ │ └── dvemgr.prx │ ├── exception │ │ ├── Makefile │ │ ├── exception.exp │ │ ├── exception.prx │ │ ├── exception_asm.S │ │ └── main.c │ ├── graphics.c │ ├── graphics.h │ ├── hankaku.c │ ├── image.c │ ├── image.h │ ├── kernel │ │ ├── Makefile │ │ ├── kernel.S │ │ ├── kernel.exp │ │ ├── kernel.h │ │ ├── kernel.prx │ │ └── main.c │ ├── menu.c │ ├── menu.h │ ├── netcomm.c │ ├── netcomm.h │ ├── pspport.c │ ├── pspport.h │ ├── sblaster.c │ ├── sblaster.h │ ├── timer.c │ ├── vertex.c │ ├── vertex.h │ ├── vga.h │ ├── video.c │ └── video.h ├── resources │ ├── BOR_Menu_Font_1.gif │ ├── BOR_Menu_Font_2.gif │ ├── BOR_Menu_Font_3.gif │ ├── OpenBOR.icns │ ├── OpenBOR.res │ ├── OpenBOR_Icon_128x128.h │ ├── OpenBOR_Icon_128x128.png │ ├── OpenBOR_Icon_128x128_png.h │ ├── OpenBOR_Icon_128x48.png │ ├── OpenBOR_Icon_128x48_png.h │ ├── OpenBOR_Icon_144x80.png │ ├── OpenBOR_Icon_144x80_png.h │ ├── OpenBOR_Icon_32x32.h │ ├── OpenBOR_Icon_32x32.ico │ ├── OpenBOR_Icon_32x32_png.h │ ├── OpenBOR_Logo_320x240.h │ ├── OpenBOR_Logo_320x240.png │ ├── OpenBOR_Logo_320x240_Link.h │ ├── OpenBOR_Logo_320x240_Link.png │ ├── OpenBOR_Logo_320x240_Link_png.h │ ├── OpenBOR_Logo_320x240_png.h │ ├── OpenBOR_Logo_480x272.h │ ├── OpenBOR_Logo_480x272.png │ ├── OpenBOR_Logo_480x272_Link.h │ ├── OpenBOR_Logo_480x272_Link.png │ ├── OpenBOR_Logo_480x272_Link_png.h │ ├── OpenBOR_Logo_480x272_png.h │ ├── OpenBOR_Menu_320x240.h │ ├── OpenBOR_Menu_320x240.png │ ├── OpenBOR_Menu_320x240_Consoles.png │ ├── OpenBOR_Menu_320x240_Consoles_png.h │ ├── OpenBOR_Menu_320x240_Sony.png │ ├── OpenBOR_Menu_320x240_Sony_png.h │ ├── OpenBOR_Menu_320x240_png.h │ ├── OpenBOR_Menu_480x272.h │ ├── OpenBOR_Menu_480x272.png │ ├── OpenBOR_Menu_480x272_Consoles.png │ ├── OpenBOR_Menu_480x272_Consoles_png.h │ ├── OpenBOR_Menu_480x272_Sony.png │ ├── OpenBOR_Menu_480x272_Sony_png.h │ ├── OpenBOR_Menu_480x272_png.h │ ├── PSP Readme.txt │ ├── PkgInfo │ ├── logviewer_320x240_png.h │ ├── logviewer_480x272_png.h │ └── makeheader.pl ├── sdl │ ├── control.c │ ├── control.h │ ├── gp2x │ │ ├── gp2xport.c │ │ ├── gp2xport.h │ │ └── modules │ │ │ └── mmuhack.o │ ├── hankaku.h │ ├── joysticks.c │ ├── joysticks.h │ ├── loadgl.c │ ├── loadgl.h │ ├── menu.c │ ├── menu.h │ ├── opengl.c │ ├── opengl.h │ ├── sblaster.c │ ├── sblaster.h │ ├── sdlport.c │ ├── sdlport.h │ ├── timer.c │ ├── vga.h │ ├── video.c │ └── video.h ├── source │ ├── adpcmlib │ │ ├── adpcm.c │ │ └── adpcm.h │ ├── gamelib │ │ ├── anigif.c │ │ ├── anigif.h │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── borendian.h │ │ ├── commands.c │ │ ├── commands.h │ │ ├── draw.c │ │ ├── draw.h │ │ ├── draw16.c │ │ ├── draw32.c │ │ ├── filecache.c │ │ ├── filecache.h │ │ ├── filters.c │ │ ├── filters.h │ │ ├── font.c │ │ ├── font.h │ │ ├── loadimg.c │ │ ├── loadimg.h │ │ ├── models.c │ │ ├── models.h │ │ ├── packfile.c │ │ ├── packfile.h │ │ ├── palette.c │ │ ├── palette.h │ │ ├── pixelformat.c │ │ ├── screen.c │ │ ├── screen.h │ │ ├── screen16.c │ │ ├── screen32.c │ │ ├── soundmix.c │ │ ├── soundmix.h │ │ ├── sprite.c │ │ ├── sprite.h │ │ ├── spriteq.c │ │ ├── spriteq.h │ │ ├── spritex8p16.c │ │ ├── spritex8p32.c │ │ ├── timer.h │ │ ├── transform.c │ │ ├── transform.h │ │ ├── translation.c │ │ ├── translation.h │ │ ├── types.h │ │ └── writepixel.h │ ├── gfxlib │ │ ├── 2xSaI.c │ │ ├── 2xSaImmx.asm │ │ ├── bilinear.c │ │ ├── bilinearmmx.asm │ │ ├── dotmatrix.c │ │ ├── gfx.c │ │ ├── gfx.h │ │ ├── gfxtypes.h │ │ ├── hq2x.c │ │ ├── hq2x.h │ │ ├── hq2x16mmx.asm │ │ ├── interp.h │ │ ├── lq2x.h │ │ ├── macros.mac │ │ ├── scale2x.c │ │ ├── scanline.c │ │ ├── simple2x.c │ │ └── tv2x.c │ ├── globals.h │ ├── pnglib │ │ ├── pngdec.c │ │ ├── pngdec.h │ │ ├── savepng.c │ │ └── savepng.h │ ├── preprocessorlib │ │ ├── README │ │ ├── pp_expr.c │ │ ├── pp_expr.h │ │ ├── pp_lexer.c │ │ ├── pp_lexer.h │ │ ├── pp_parser.c │ │ ├── pp_parser.h │ │ └── test │ │ │ ├── build.sh │ │ │ ├── calculator.c │ │ │ ├── infixparser.c │ │ │ ├── pp_test.c │ │ │ ├── tmp.c │ │ │ ├── tokendiff.c │ │ │ └── tokendiff.sh │ ├── ramlib │ │ ├── ram.c │ │ └── ram.h │ ├── randlib │ │ ├── rand32.c │ │ └── rand32.h │ ├── scriptlib │ │ ├── FirstFollow.h │ │ ├── ImportCache.c │ │ ├── ImportCache.h │ │ ├── Instruction.c │ │ ├── Instruction.h │ │ ├── Interpreter.c │ │ ├── Interpreter.h │ │ ├── Lexer.c │ │ ├── Lexer.h │ │ ├── List.c │ │ ├── List.h │ │ ├── List_unittest.c │ │ ├── Parser.c │ │ ├── Parser.h │ │ ├── ParserSet.c │ │ ├── ParserSet.h │ │ ├── Productions.h │ │ ├── ScriptVariant.c │ │ ├── ScriptVariant.h │ │ ├── Stack.c │ │ ├── Stack.h │ │ ├── StackedSymbolTable.c │ │ ├── StackedSymbolTable.h │ │ ├── SymbolTable.c │ │ ├── SymbolTable.h │ │ └── depends.h │ ├── stringptr.c │ ├── stringptr.h │ ├── stristr.c │ ├── stristr.h │ ├── tracelib2 │ │ ├── tracelib2.c │ │ ├── tracelib2.h │ │ └── tracelib2_test.c │ ├── utils.c │ └── utils.h ├── symbian │ ├── bld.inf │ ├── icons.mk │ ├── openbor.mmp │ ├── openbor.rss │ ├── openbor.svg │ ├── openbor_reg.rss │ ├── openbor_s60v3.pkg │ ├── openbor_uiq3.mmp │ ├── symbian.cpp │ ├── uiq3 │ │ ├── bld.inf │ │ ├── openbor.rss │ │ ├── openbor_l.bmp │ │ ├── openbor_lm.bmp │ │ ├── openbor_s.bmp │ │ ├── openbor_sm.bmp │ │ ├── openbor_uiq3.pkg │ │ ├── openbor_xl.bmp │ │ └── openbor_xlm.bmp │ └── vsnprintf.h ├── translation.txt ├── version.sh ├── wii │ ├── control.c │ ├── control.h │ ├── hankaku.h │ ├── menu.c │ ├── menu.h │ ├── sblaster.c │ ├── sblaster.h │ ├── timer.c │ ├── vga.h │ ├── video.c │ ├── video.h │ ├── wiiport.c │ └── wiiport.h ├── xbox │ ├── OpenBoR.sln │ ├── OpenBoR.vcproj │ ├── common │ │ ├── include │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── xbapp.h │ │ │ ├── xbfont.h │ │ │ ├── xbhelp.h │ │ │ ├── xbinput.h │ │ │ ├── xbmesh.h │ │ │ ├── xbresource.h │ │ │ ├── xbsound.h │ │ │ ├── xbstopwatch.h │ │ │ ├── xbutil.h │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ └── src │ │ │ ├── xbapp.cpp │ │ │ ├── xbfont.cpp │ │ │ ├── xbhelp.cpp │ │ │ ├── xbinput.cpp │ │ │ ├── xbmesh.cpp │ │ │ ├── xbresource.cpp │ │ │ ├── xbsound.cpp │ │ │ ├── xbstopwatch.cpp │ │ │ └── xbutil.cpp │ ├── control.c │ ├── control.h │ ├── data │ │ └── menu.pak │ ├── generic │ │ ├── 2xsaiw.obj │ │ ├── 2xsaiwin.c │ │ ├── 2xsaiwin.h │ │ ├── SndXBOX.cxx │ │ ├── SndXBOX.hxx │ │ ├── configuration.h │ │ ├── custom_launch_params.cpp │ │ ├── custom_launch_params.h │ │ ├── gamescreen.h │ │ ├── graphicscontext.cpp │ │ ├── graphicscontext.h │ │ ├── hq2x16.obj │ │ ├── iosupport.cpp │ │ ├── iosupport.h │ │ ├── keyboard_api.h │ │ ├── panel.cpp │ │ ├── panel.h │ │ ├── scale2x.cpp │ │ ├── simple2x.cpp │ │ ├── skin.cpp │ │ ├── skin.h │ │ ├── undocumented.h │ │ ├── wnaspi32.h │ │ ├── xboxport.cpp │ │ ├── xboxport.h │ │ ├── xmldocument.cpp │ │ └── xmldocument.h │ ├── make.bat │ ├── sblaster.c │ ├── sblaster.h │ ├── timer.c │ ├── vga.h │ ├── video.c │ └── video.h └── xcode │ └── mac │ └── OpenBOR.xcodeproj │ └── project.pbxproj └── tools ├── LICENSE ├── README ├── borpak ├── README.linux ├── README.txt ├── scripts │ ├── packer │ ├── packer.bat │ ├── paxplode │ └── paxplode.bat └── source │ ├── COMPILING.txt │ ├── borpak.c │ ├── build.bat │ ├── build.sh │ ├── scandir.c │ ├── scandir.h │ ├── stristr.c │ └── stristr.h ├── borplay ├── README-borplay.txt ├── README-borplay.txt~ ├── README-listmusic.txt ├── build.bat ├── build.sh └── source │ ├── adpcm.c │ ├── adpcm.h │ ├── ao.h │ ├── borplay.c │ ├── kbhit.c │ ├── kbhit.h │ ├── listmusic.exe │ ├── listmusic.py │ ├── mylibaow32.c │ ├── os_types.h │ ├── packlib.py │ ├── stristr.c │ └── stristr.h ├── ip ├── IP.BIN └── logo │ ├── fonts │ ├── angular.zip │ └── dukungan.zip │ ├── iplogo.mr │ └── iplogo.psd └── openwav2bor ├── build.bat ├── build.sh └── source ├── adpcm.c ├── adpcm.h ├── bor2wav.c ├── common.h └── wav2bor.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/clean.sh -------------------------------------------------------------------------------- /engine/COMPILING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/COMPILING -------------------------------------------------------------------------------- /engine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/LICENSE -------------------------------------------------------------------------------- /engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/Makefile -------------------------------------------------------------------------------- /engine/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/README -------------------------------------------------------------------------------- /engine/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/AndroidManifest.xml -------------------------------------------------------------------------------- /engine/android/Readthis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/Readthis.txt -------------------------------------------------------------------------------- /engine/android/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/build.bat -------------------------------------------------------------------------------- /engine/android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/build.xml -------------------------------------------------------------------------------- /engine/android/console.bat: -------------------------------------------------------------------------------- 1 | cmd 2 | 3 | -------------------------------------------------------------------------------- /engine/android/copy_and_rename_me_to_local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/copy_and_rename_me_to_local.properties -------------------------------------------------------------------------------- /engine/android/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/install.bat -------------------------------------------------------------------------------- /engine/android/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) -------------------------------------------------------------------------------- /engine/android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := armeabi-v7a 2 | -------------------------------------------------------------------------------- /engine/android/jni/openbor/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/Android.mk -------------------------------------------------------------------------------- /engine/android/jni/openbor/SDL_android_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/SDL_android_main.cpp -------------------------------------------------------------------------------- /engine/android/jni/openbor/button_png_800x480.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/button_png_800x480.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/ogg/config_types.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/ogg/ogg.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/ogg/os_types.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/png/png.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/png/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/png/pngconf.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/png/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/png/pnglibconf.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_assert.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_atomic.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_audio.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_bits.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_blendmode.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_clipboard.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_android.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_macosx.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_minimal.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_pandora.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_psp.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_windows.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_config_wiz.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_copying.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_cpuinfo.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_endian.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_error.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_events.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_filesystem.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_gamecontroller.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_gesture.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_haptic.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_hints.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_joystick.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_keyboard.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_keycode.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_loadso.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_log.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_main.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_messagebox.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_mouse.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_mutex.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_name.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_opengl.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_opengles.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_opengles2.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_pixels.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_platform.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_power.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_quit.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_rect.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_render.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_revision.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_rwops.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_scancode.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_shape.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_stdinc.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_surface.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_system.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_syswm.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_assert.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_common.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_compare.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_crc32.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_font.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_harness.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_images.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_log.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_md5.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_test_random.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_thread.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_timer.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_touch.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_types.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_version.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/SDL_video.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/begin_code.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/sdl/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/sdl/close_code.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/vorbis/codec.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/vorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/vorbis/vorbisenc.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /engine/android/jni/openbor/jniutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/jniutils.cpp -------------------------------------------------------------------------------- /engine/android/jni/openbor/lib/armeabi-v7a/libSDL2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/lib/armeabi-v7a/libSDL2.so -------------------------------------------------------------------------------- /engine/android/jni/openbor/lib/armeabi-v7a/libogg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/lib/armeabi-v7a/libogg.a -------------------------------------------------------------------------------- /engine/android/jni/openbor/lib/armeabi-v7a/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/lib/armeabi-v7a/libpng.a -------------------------------------------------------------------------------- /engine/android/jni/openbor/lib/armeabi-v7a/libvorbis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/lib/armeabi-v7a/libvorbis.a -------------------------------------------------------------------------------- /engine/android/jni/openbor/lib/armeabi-v7a/old_libs/libSDL2.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/lib/armeabi-v7a/old_libs/libSDL2.old -------------------------------------------------------------------------------- /engine/android/jni/openbor/lib/armeabi-v7a/old_libs/libogg.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/lib/armeabi-v7a/old_libs/libogg.old -------------------------------------------------------------------------------- /engine/android/jni/openbor/lib/armeabi-v7a/old_libs/libvorbis.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/lib/armeabi-v7a/old_libs/libvorbis.old -------------------------------------------------------------------------------- /engine/android/jni/openbor/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/jni/openbor/video.c -------------------------------------------------------------------------------- /engine/android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/proguard-project.txt -------------------------------------------------------------------------------- /engine/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/project.properties -------------------------------------------------------------------------------- /engine/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /engine/android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /engine/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /engine/android/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/res/layout/main.xml -------------------------------------------------------------------------------- /engine/android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/res/values/strings.xml -------------------------------------------------------------------------------- /engine/android/src/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/android/src/org/libsdl/app/SDLActivity.java -------------------------------------------------------------------------------- /engine/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/build.bat -------------------------------------------------------------------------------- /engine/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/build.sh -------------------------------------------------------------------------------- /engine/codeblocks/OpenBOR.Windows.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/codeblocks/OpenBOR.Windows.cbp -------------------------------------------------------------------------------- /engine/codeblocks/OpenBOR.Windows.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/codeblocks/OpenBOR.Windows.layout -------------------------------------------------------------------------------- /engine/darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/darwin.sh -------------------------------------------------------------------------------- /engine/dc/bios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/bios.h -------------------------------------------------------------------------------- /engine/dc/bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/bios.s -------------------------------------------------------------------------------- /engine/dc/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/control.c -------------------------------------------------------------------------------- /engine/dc/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/control.h -------------------------------------------------------------------------------- /engine/dc/dcport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/dcport.c -------------------------------------------------------------------------------- /engine/dc/dcport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/dcport.h -------------------------------------------------------------------------------- /engine/dc/gdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/gdrom.c -------------------------------------------------------------------------------- /engine/dc/gdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/gdrom.h -------------------------------------------------------------------------------- /engine/dc/menu/menu.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/menu/menu.pak -------------------------------------------------------------------------------- /engine/dc/sblaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/sblaster.c -------------------------------------------------------------------------------- /engine/dc/sblaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/sblaster.h -------------------------------------------------------------------------------- /engine/dc/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/timer.c -------------------------------------------------------------------------------- /engine/dc/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/vga.h -------------------------------------------------------------------------------- /engine/dc/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/video.c -------------------------------------------------------------------------------- /engine/dc/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/dc/video.h -------------------------------------------------------------------------------- /engine/environ.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/environ.sh -------------------------------------------------------------------------------- /engine/fixindentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/fixindentation.sh -------------------------------------------------------------------------------- /engine/fixtrailingwhitespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/fixtrailingwhitespace.sh -------------------------------------------------------------------------------- /engine/openbor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/openbor.c -------------------------------------------------------------------------------- /engine/openbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/openbor.h -------------------------------------------------------------------------------- /engine/openborscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/openborscript.c -------------------------------------------------------------------------------- /engine/openborscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/openborscript.h -------------------------------------------------------------------------------- /engine/psp/audiodrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/audiodrv.c -------------------------------------------------------------------------------- /engine/psp/audiodrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/audiodrv.h -------------------------------------------------------------------------------- /engine/psp/build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/build.mak -------------------------------------------------------------------------------- /engine/psp/build_prx.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/build_prx.mak -------------------------------------------------------------------------------- /engine/psp/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control.c -------------------------------------------------------------------------------- /engine/psp/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control.h -------------------------------------------------------------------------------- /engine/psp/control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control/Makefile -------------------------------------------------------------------------------- /engine/psp/control/control.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control/control.S -------------------------------------------------------------------------------- /engine/psp/control/control.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control/control.exp -------------------------------------------------------------------------------- /engine/psp/control/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control/control.h -------------------------------------------------------------------------------- /engine/psp/control/control.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control/control.prx -------------------------------------------------------------------------------- /engine/psp/control/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/control/main.c -------------------------------------------------------------------------------- /engine/psp/dvemgr/dvemgr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/dvemgr/dvemgr.S -------------------------------------------------------------------------------- /engine/psp/dvemgr/dvemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/dvemgr/dvemgr.h -------------------------------------------------------------------------------- /engine/psp/dvemgr/dvemgr.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/dvemgr/dvemgr.prx -------------------------------------------------------------------------------- /engine/psp/exception/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/exception/Makefile -------------------------------------------------------------------------------- /engine/psp/exception/exception.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/exception/exception.exp -------------------------------------------------------------------------------- /engine/psp/exception/exception.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/exception/exception.prx -------------------------------------------------------------------------------- /engine/psp/exception/exception_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/exception/exception_asm.S -------------------------------------------------------------------------------- /engine/psp/exception/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/exception/main.c -------------------------------------------------------------------------------- /engine/psp/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/graphics.c -------------------------------------------------------------------------------- /engine/psp/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/graphics.h -------------------------------------------------------------------------------- /engine/psp/hankaku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/hankaku.c -------------------------------------------------------------------------------- /engine/psp/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/image.c -------------------------------------------------------------------------------- /engine/psp/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/image.h -------------------------------------------------------------------------------- /engine/psp/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/kernel/Makefile -------------------------------------------------------------------------------- /engine/psp/kernel/kernel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/kernel/kernel.S -------------------------------------------------------------------------------- /engine/psp/kernel/kernel.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/kernel/kernel.exp -------------------------------------------------------------------------------- /engine/psp/kernel/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/kernel/kernel.h -------------------------------------------------------------------------------- /engine/psp/kernel/kernel.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/kernel/kernel.prx -------------------------------------------------------------------------------- /engine/psp/kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/kernel/main.c -------------------------------------------------------------------------------- /engine/psp/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/menu.c -------------------------------------------------------------------------------- /engine/psp/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/menu.h -------------------------------------------------------------------------------- /engine/psp/netcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/netcomm.c -------------------------------------------------------------------------------- /engine/psp/netcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/netcomm.h -------------------------------------------------------------------------------- /engine/psp/pspport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/pspport.c -------------------------------------------------------------------------------- /engine/psp/pspport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/pspport.h -------------------------------------------------------------------------------- /engine/psp/sblaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/sblaster.c -------------------------------------------------------------------------------- /engine/psp/sblaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/sblaster.h -------------------------------------------------------------------------------- /engine/psp/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/timer.c -------------------------------------------------------------------------------- /engine/psp/vertex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/vertex.c -------------------------------------------------------------------------------- /engine/psp/vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/vertex.h -------------------------------------------------------------------------------- /engine/psp/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/vga.h -------------------------------------------------------------------------------- /engine/psp/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/video.c -------------------------------------------------------------------------------- /engine/psp/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/psp/video.h -------------------------------------------------------------------------------- /engine/resources/BOR_Menu_Font_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/BOR_Menu_Font_1.gif -------------------------------------------------------------------------------- /engine/resources/BOR_Menu_Font_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/BOR_Menu_Font_2.gif -------------------------------------------------------------------------------- /engine/resources/BOR_Menu_Font_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/BOR_Menu_Font_3.gif -------------------------------------------------------------------------------- /engine/resources/OpenBOR.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR.icns -------------------------------------------------------------------------------- /engine/resources/OpenBOR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR.res -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_128x128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_128x128.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_128x128.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_128x128_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_128x128_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_128x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_128x48.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_128x48_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_128x48_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_144x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_144x80.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_144x80_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_144x80_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_32x32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_32x32.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_32x32.ico -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Icon_32x32_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Icon_32x32_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_320x240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_320x240.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_320x240.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_320x240_Link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_320x240_Link.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_320x240_Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_320x240_Link.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_320x240_Link_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_320x240_Link_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_320x240_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_320x240_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_480x272.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_480x272.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_480x272.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_480x272_Link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_480x272_Link.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_480x272_Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_480x272_Link.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_480x272_Link_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_480x272_Link_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Logo_480x272_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Logo_480x272_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_320x240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_320x240.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_320x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_320x240.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_320x240_Consoles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_320x240_Consoles.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_320x240_Consoles_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_320x240_Consoles_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_320x240_Sony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_320x240_Sony.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_320x240_Sony_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_320x240_Sony_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_320x240_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_320x240_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_480x272.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_480x272.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_480x272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_480x272.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_480x272_Consoles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_480x272_Consoles.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_480x272_Consoles_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_480x272_Consoles_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_480x272_Sony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_480x272_Sony.png -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_480x272_Sony_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_480x272_Sony_png.h -------------------------------------------------------------------------------- /engine/resources/OpenBOR_Menu_480x272_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/OpenBOR_Menu_480x272_png.h -------------------------------------------------------------------------------- /engine/resources/PSP Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/PSP Readme.txt -------------------------------------------------------------------------------- /engine/resources/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLOBOR 2 | -------------------------------------------------------------------------------- /engine/resources/logviewer_320x240_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/logviewer_320x240_png.h -------------------------------------------------------------------------------- /engine/resources/logviewer_480x272_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/logviewer_480x272_png.h -------------------------------------------------------------------------------- /engine/resources/makeheader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/resources/makeheader.pl -------------------------------------------------------------------------------- /engine/sdl/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/control.c -------------------------------------------------------------------------------- /engine/sdl/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/control.h -------------------------------------------------------------------------------- /engine/sdl/gp2x/gp2xport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/gp2x/gp2xport.c -------------------------------------------------------------------------------- /engine/sdl/gp2x/gp2xport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/gp2x/gp2xport.h -------------------------------------------------------------------------------- /engine/sdl/gp2x/modules/mmuhack.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/gp2x/modules/mmuhack.o -------------------------------------------------------------------------------- /engine/sdl/hankaku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/hankaku.h -------------------------------------------------------------------------------- /engine/sdl/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/joysticks.c -------------------------------------------------------------------------------- /engine/sdl/joysticks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/joysticks.h -------------------------------------------------------------------------------- /engine/sdl/loadgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/loadgl.c -------------------------------------------------------------------------------- /engine/sdl/loadgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/loadgl.h -------------------------------------------------------------------------------- /engine/sdl/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/menu.c -------------------------------------------------------------------------------- /engine/sdl/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/menu.h -------------------------------------------------------------------------------- /engine/sdl/opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/opengl.c -------------------------------------------------------------------------------- /engine/sdl/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/opengl.h -------------------------------------------------------------------------------- /engine/sdl/sblaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/sblaster.c -------------------------------------------------------------------------------- /engine/sdl/sblaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/sblaster.h -------------------------------------------------------------------------------- /engine/sdl/sdlport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/sdlport.c -------------------------------------------------------------------------------- /engine/sdl/sdlport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/sdlport.h -------------------------------------------------------------------------------- /engine/sdl/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/timer.c -------------------------------------------------------------------------------- /engine/sdl/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/vga.h -------------------------------------------------------------------------------- /engine/sdl/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/video.c -------------------------------------------------------------------------------- /engine/sdl/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/sdl/video.h -------------------------------------------------------------------------------- /engine/source/adpcmlib/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/adpcmlib/adpcm.c -------------------------------------------------------------------------------- /engine/source/adpcmlib/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/adpcmlib/adpcm.h -------------------------------------------------------------------------------- /engine/source/gamelib/anigif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/anigif.c -------------------------------------------------------------------------------- /engine/source/gamelib/anigif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/anigif.h -------------------------------------------------------------------------------- /engine/source/gamelib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/bitmap.c -------------------------------------------------------------------------------- /engine/source/gamelib/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/bitmap.h -------------------------------------------------------------------------------- /engine/source/gamelib/borendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/borendian.h -------------------------------------------------------------------------------- /engine/source/gamelib/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/commands.c -------------------------------------------------------------------------------- /engine/source/gamelib/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/commands.h -------------------------------------------------------------------------------- /engine/source/gamelib/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/draw.c -------------------------------------------------------------------------------- /engine/source/gamelib/draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/draw.h -------------------------------------------------------------------------------- /engine/source/gamelib/draw16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/draw16.c -------------------------------------------------------------------------------- /engine/source/gamelib/draw32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/draw32.c -------------------------------------------------------------------------------- /engine/source/gamelib/filecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/filecache.c -------------------------------------------------------------------------------- /engine/source/gamelib/filecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/filecache.h -------------------------------------------------------------------------------- /engine/source/gamelib/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/filters.c -------------------------------------------------------------------------------- /engine/source/gamelib/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/filters.h -------------------------------------------------------------------------------- /engine/source/gamelib/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/font.c -------------------------------------------------------------------------------- /engine/source/gamelib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/font.h -------------------------------------------------------------------------------- /engine/source/gamelib/loadimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/loadimg.c -------------------------------------------------------------------------------- /engine/source/gamelib/loadimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/loadimg.h -------------------------------------------------------------------------------- /engine/source/gamelib/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/models.c -------------------------------------------------------------------------------- /engine/source/gamelib/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/models.h -------------------------------------------------------------------------------- /engine/source/gamelib/packfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/packfile.c -------------------------------------------------------------------------------- /engine/source/gamelib/packfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/packfile.h -------------------------------------------------------------------------------- /engine/source/gamelib/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/palette.c -------------------------------------------------------------------------------- /engine/source/gamelib/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/palette.h -------------------------------------------------------------------------------- /engine/source/gamelib/pixelformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/pixelformat.c -------------------------------------------------------------------------------- /engine/source/gamelib/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/screen.c -------------------------------------------------------------------------------- /engine/source/gamelib/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/screen.h -------------------------------------------------------------------------------- /engine/source/gamelib/screen16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/screen16.c -------------------------------------------------------------------------------- /engine/source/gamelib/screen32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/screen32.c -------------------------------------------------------------------------------- /engine/source/gamelib/soundmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/soundmix.c -------------------------------------------------------------------------------- /engine/source/gamelib/soundmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/soundmix.h -------------------------------------------------------------------------------- /engine/source/gamelib/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/sprite.c -------------------------------------------------------------------------------- /engine/source/gamelib/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/sprite.h -------------------------------------------------------------------------------- /engine/source/gamelib/spriteq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/spriteq.c -------------------------------------------------------------------------------- /engine/source/gamelib/spriteq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/spriteq.h -------------------------------------------------------------------------------- /engine/source/gamelib/spritex8p16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/spritex8p16.c -------------------------------------------------------------------------------- /engine/source/gamelib/spritex8p32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/spritex8p32.c -------------------------------------------------------------------------------- /engine/source/gamelib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/timer.h -------------------------------------------------------------------------------- /engine/source/gamelib/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/transform.c -------------------------------------------------------------------------------- /engine/source/gamelib/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/transform.h -------------------------------------------------------------------------------- /engine/source/gamelib/translation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/translation.c -------------------------------------------------------------------------------- /engine/source/gamelib/translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/translation.h -------------------------------------------------------------------------------- /engine/source/gamelib/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/types.h -------------------------------------------------------------------------------- /engine/source/gamelib/writepixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gamelib/writepixel.h -------------------------------------------------------------------------------- /engine/source/gfxlib/2xSaI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/2xSaI.c -------------------------------------------------------------------------------- /engine/source/gfxlib/2xSaImmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/2xSaImmx.asm -------------------------------------------------------------------------------- /engine/source/gfxlib/bilinear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/bilinear.c -------------------------------------------------------------------------------- /engine/source/gfxlib/bilinearmmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/bilinearmmx.asm -------------------------------------------------------------------------------- /engine/source/gfxlib/dotmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/dotmatrix.c -------------------------------------------------------------------------------- /engine/source/gfxlib/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/gfx.c -------------------------------------------------------------------------------- /engine/source/gfxlib/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/gfx.h -------------------------------------------------------------------------------- /engine/source/gfxlib/gfxtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/gfxtypes.h -------------------------------------------------------------------------------- /engine/source/gfxlib/hq2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/hq2x.c -------------------------------------------------------------------------------- /engine/source/gfxlib/hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/hq2x.h -------------------------------------------------------------------------------- /engine/source/gfxlib/hq2x16mmx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/hq2x16mmx.asm -------------------------------------------------------------------------------- /engine/source/gfxlib/interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/interp.h -------------------------------------------------------------------------------- /engine/source/gfxlib/lq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/lq2x.h -------------------------------------------------------------------------------- /engine/source/gfxlib/macros.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/macros.mac -------------------------------------------------------------------------------- /engine/source/gfxlib/scale2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/scale2x.c -------------------------------------------------------------------------------- /engine/source/gfxlib/scanline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/scanline.c -------------------------------------------------------------------------------- /engine/source/gfxlib/simple2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/simple2x.c -------------------------------------------------------------------------------- /engine/source/gfxlib/tv2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/gfxlib/tv2x.c -------------------------------------------------------------------------------- /engine/source/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/globals.h -------------------------------------------------------------------------------- /engine/source/pnglib/pngdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/pnglib/pngdec.c -------------------------------------------------------------------------------- /engine/source/pnglib/pngdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/pnglib/pngdec.h -------------------------------------------------------------------------------- /engine/source/pnglib/savepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/pnglib/savepng.c -------------------------------------------------------------------------------- /engine/source/pnglib/savepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/pnglib/savepng.h -------------------------------------------------------------------------------- /engine/source/preprocessorlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/README -------------------------------------------------------------------------------- /engine/source/preprocessorlib/pp_expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/pp_expr.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/pp_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/pp_expr.h -------------------------------------------------------------------------------- /engine/source/preprocessorlib/pp_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/pp_lexer.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/pp_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/pp_lexer.h -------------------------------------------------------------------------------- /engine/source/preprocessorlib/pp_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/pp_parser.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/pp_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/pp_parser.h -------------------------------------------------------------------------------- /engine/source/preprocessorlib/test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/test/build.sh -------------------------------------------------------------------------------- /engine/source/preprocessorlib/test/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/test/calculator.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/test/infixparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/test/infixparser.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/test/pp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/test/pp_test.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/test/tmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/test/tmp.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/test/tokendiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/test/tokendiff.c -------------------------------------------------------------------------------- /engine/source/preprocessorlib/test/tokendiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/preprocessorlib/test/tokendiff.sh -------------------------------------------------------------------------------- /engine/source/ramlib/ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/ramlib/ram.c -------------------------------------------------------------------------------- /engine/source/ramlib/ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/ramlib/ram.h -------------------------------------------------------------------------------- /engine/source/randlib/rand32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/randlib/rand32.c -------------------------------------------------------------------------------- /engine/source/randlib/rand32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/randlib/rand32.h -------------------------------------------------------------------------------- /engine/source/scriptlib/FirstFollow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/FirstFollow.h -------------------------------------------------------------------------------- /engine/source/scriptlib/ImportCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/ImportCache.c -------------------------------------------------------------------------------- /engine/source/scriptlib/ImportCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/ImportCache.h -------------------------------------------------------------------------------- /engine/source/scriptlib/Instruction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Instruction.c -------------------------------------------------------------------------------- /engine/source/scriptlib/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Instruction.h -------------------------------------------------------------------------------- /engine/source/scriptlib/Interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Interpreter.c -------------------------------------------------------------------------------- /engine/source/scriptlib/Interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Interpreter.h -------------------------------------------------------------------------------- /engine/source/scriptlib/Lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Lexer.c -------------------------------------------------------------------------------- /engine/source/scriptlib/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Lexer.h -------------------------------------------------------------------------------- /engine/source/scriptlib/List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/List.c -------------------------------------------------------------------------------- /engine/source/scriptlib/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/List.h -------------------------------------------------------------------------------- /engine/source/scriptlib/List_unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/List_unittest.c -------------------------------------------------------------------------------- /engine/source/scriptlib/Parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Parser.c -------------------------------------------------------------------------------- /engine/source/scriptlib/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Parser.h -------------------------------------------------------------------------------- /engine/source/scriptlib/ParserSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/ParserSet.c -------------------------------------------------------------------------------- /engine/source/scriptlib/ParserSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/ParserSet.h -------------------------------------------------------------------------------- /engine/source/scriptlib/Productions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Productions.h -------------------------------------------------------------------------------- /engine/source/scriptlib/ScriptVariant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/ScriptVariant.c -------------------------------------------------------------------------------- /engine/source/scriptlib/ScriptVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/ScriptVariant.h -------------------------------------------------------------------------------- /engine/source/scriptlib/Stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Stack.c -------------------------------------------------------------------------------- /engine/source/scriptlib/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/Stack.h -------------------------------------------------------------------------------- /engine/source/scriptlib/StackedSymbolTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/StackedSymbolTable.c -------------------------------------------------------------------------------- /engine/source/scriptlib/StackedSymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/StackedSymbolTable.h -------------------------------------------------------------------------------- /engine/source/scriptlib/SymbolTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/SymbolTable.c -------------------------------------------------------------------------------- /engine/source/scriptlib/SymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/SymbolTable.h -------------------------------------------------------------------------------- /engine/source/scriptlib/depends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/scriptlib/depends.h -------------------------------------------------------------------------------- /engine/source/stringptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/stringptr.c -------------------------------------------------------------------------------- /engine/source/stringptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/stringptr.h -------------------------------------------------------------------------------- /engine/source/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/stristr.c -------------------------------------------------------------------------------- /engine/source/stristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/stristr.h -------------------------------------------------------------------------------- /engine/source/tracelib2/tracelib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/tracelib2/tracelib2.c -------------------------------------------------------------------------------- /engine/source/tracelib2/tracelib2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/tracelib2/tracelib2.h -------------------------------------------------------------------------------- /engine/source/tracelib2/tracelib2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/tracelib2/tracelib2_test.c -------------------------------------------------------------------------------- /engine/source/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/utils.c -------------------------------------------------------------------------------- /engine/source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/source/utils.h -------------------------------------------------------------------------------- /engine/symbian/bld.inf: -------------------------------------------------------------------------------- 1 | PRJ_PLATFORMS 2 | DEFAULT 3 | PRJ_MMPFILES 4 | gnumakefile icons.mk 5 | openbor.mmp 6 | -------------------------------------------------------------------------------- /engine/symbian/icons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/icons.mk -------------------------------------------------------------------------------- /engine/symbian/openbor.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/openbor.mmp -------------------------------------------------------------------------------- /engine/symbian/openbor.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/openbor.rss -------------------------------------------------------------------------------- /engine/symbian/openbor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/openbor.svg -------------------------------------------------------------------------------- /engine/symbian/openbor_reg.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/openbor_reg.rss -------------------------------------------------------------------------------- /engine/symbian/openbor_s60v3.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/openbor_s60v3.pkg -------------------------------------------------------------------------------- /engine/symbian/openbor_uiq3.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/openbor_uiq3.mmp -------------------------------------------------------------------------------- /engine/symbian/symbian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/symbian.cpp -------------------------------------------------------------------------------- /engine/symbian/uiq3/bld.inf: -------------------------------------------------------------------------------- 1 | PRJ_PLATFORMS 2 | DEFAULT gcce 3 | PRJ_MMPFILES 4 | ..\openbor_uiq3.mmp -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor.rss -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor_l.bmp -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor_lm.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor_lm.bmp -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor_s.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor_s.bmp -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor_sm.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor_sm.bmp -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor_uiq3.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor_uiq3.pkg -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor_xl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor_xl.bmp -------------------------------------------------------------------------------- /engine/symbian/uiq3/openbor_xlm.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/uiq3/openbor_xlm.bmp -------------------------------------------------------------------------------- /engine/symbian/vsnprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/symbian/vsnprintf.h -------------------------------------------------------------------------------- /engine/translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/translation.txt -------------------------------------------------------------------------------- /engine/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/version.sh -------------------------------------------------------------------------------- /engine/wii/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/control.c -------------------------------------------------------------------------------- /engine/wii/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/control.h -------------------------------------------------------------------------------- /engine/wii/hankaku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/hankaku.h -------------------------------------------------------------------------------- /engine/wii/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/menu.c -------------------------------------------------------------------------------- /engine/wii/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/menu.h -------------------------------------------------------------------------------- /engine/wii/sblaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/sblaster.c -------------------------------------------------------------------------------- /engine/wii/sblaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/sblaster.h -------------------------------------------------------------------------------- /engine/wii/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/timer.c -------------------------------------------------------------------------------- /engine/wii/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/vga.h -------------------------------------------------------------------------------- /engine/wii/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/video.c -------------------------------------------------------------------------------- /engine/wii/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/video.h -------------------------------------------------------------------------------- /engine/wii/wiiport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/wiiport.c -------------------------------------------------------------------------------- /engine/wii/wiiport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/wii/wiiport.h -------------------------------------------------------------------------------- /engine/xbox/OpenBoR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/OpenBoR.sln -------------------------------------------------------------------------------- /engine/xbox/OpenBoR.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/OpenBoR.vcproj -------------------------------------------------------------------------------- /engine/xbox/common/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/png.h -------------------------------------------------------------------------------- /engine/xbox/common/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/pngconf.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbapp.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbfont.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbhelp.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbinput.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbmesh.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbresource.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbsound.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbstopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbstopwatch.h -------------------------------------------------------------------------------- /engine/xbox/common/include/xbutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/xbutil.h -------------------------------------------------------------------------------- /engine/xbox/common/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/zconf.h -------------------------------------------------------------------------------- /engine/xbox/common/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/include/zlib.h -------------------------------------------------------------------------------- /engine/xbox/common/src/xbapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbapp.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbfont.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbhelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbhelp.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbinput.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbmesh.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbresource.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbsound.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbstopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbstopwatch.cpp -------------------------------------------------------------------------------- /engine/xbox/common/src/xbutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/common/src/xbutil.cpp -------------------------------------------------------------------------------- /engine/xbox/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/control.c -------------------------------------------------------------------------------- /engine/xbox/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/control.h -------------------------------------------------------------------------------- /engine/xbox/data/menu.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/data/menu.pak -------------------------------------------------------------------------------- /engine/xbox/generic/2xsaiw.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/2xsaiw.obj -------------------------------------------------------------------------------- /engine/xbox/generic/2xsaiwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/2xsaiwin.c -------------------------------------------------------------------------------- /engine/xbox/generic/2xsaiwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/2xsaiwin.h -------------------------------------------------------------------------------- /engine/xbox/generic/SndXBOX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/SndXBOX.cxx -------------------------------------------------------------------------------- /engine/xbox/generic/SndXBOX.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/SndXBOX.hxx -------------------------------------------------------------------------------- /engine/xbox/generic/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/configuration.h -------------------------------------------------------------------------------- /engine/xbox/generic/custom_launch_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/custom_launch_params.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/custom_launch_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/custom_launch_params.h -------------------------------------------------------------------------------- /engine/xbox/generic/gamescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/gamescreen.h -------------------------------------------------------------------------------- /engine/xbox/generic/graphicscontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/graphicscontext.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/graphicscontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/graphicscontext.h -------------------------------------------------------------------------------- /engine/xbox/generic/hq2x16.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/hq2x16.obj -------------------------------------------------------------------------------- /engine/xbox/generic/iosupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/iosupport.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/iosupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/iosupport.h -------------------------------------------------------------------------------- /engine/xbox/generic/keyboard_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/keyboard_api.h -------------------------------------------------------------------------------- /engine/xbox/generic/panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/panel.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/panel.h -------------------------------------------------------------------------------- /engine/xbox/generic/scale2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/scale2x.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/simple2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/simple2x.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/skin.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/skin.h -------------------------------------------------------------------------------- /engine/xbox/generic/undocumented.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/undocumented.h -------------------------------------------------------------------------------- /engine/xbox/generic/wnaspi32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/wnaspi32.h -------------------------------------------------------------------------------- /engine/xbox/generic/xboxport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/xboxport.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/xboxport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/xboxport.h -------------------------------------------------------------------------------- /engine/xbox/generic/xmldocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/xmldocument.cpp -------------------------------------------------------------------------------- /engine/xbox/generic/xmldocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/generic/xmldocument.h -------------------------------------------------------------------------------- /engine/xbox/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/make.bat -------------------------------------------------------------------------------- /engine/xbox/sblaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/sblaster.c -------------------------------------------------------------------------------- /engine/xbox/sblaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/sblaster.h -------------------------------------------------------------------------------- /engine/xbox/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/timer.c -------------------------------------------------------------------------------- /engine/xbox/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/vga.h -------------------------------------------------------------------------------- /engine/xbox/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/video.c -------------------------------------------------------------------------------- /engine/xbox/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xbox/video.h -------------------------------------------------------------------------------- /engine/xcode/mac/OpenBOR.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/engine/xcode/mac/OpenBOR.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/LICENSE -------------------------------------------------------------------------------- /tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/README -------------------------------------------------------------------------------- /tools/borpak/README.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/README.linux -------------------------------------------------------------------------------- /tools/borpak/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/README.txt -------------------------------------------------------------------------------- /tools/borpak/scripts/packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/scripts/packer -------------------------------------------------------------------------------- /tools/borpak/scripts/packer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/scripts/packer.bat -------------------------------------------------------------------------------- /tools/borpak/scripts/paxplode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/scripts/paxplode -------------------------------------------------------------------------------- /tools/borpak/scripts/paxplode.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/scripts/paxplode.bat -------------------------------------------------------------------------------- /tools/borpak/source/COMPILING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/COMPILING.txt -------------------------------------------------------------------------------- /tools/borpak/source/borpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/borpak.c -------------------------------------------------------------------------------- /tools/borpak/source/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/build.bat -------------------------------------------------------------------------------- /tools/borpak/source/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/build.sh -------------------------------------------------------------------------------- /tools/borpak/source/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/scandir.c -------------------------------------------------------------------------------- /tools/borpak/source/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/scandir.h -------------------------------------------------------------------------------- /tools/borpak/source/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/stristr.c -------------------------------------------------------------------------------- /tools/borpak/source/stristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borpak/source/stristr.h -------------------------------------------------------------------------------- /tools/borplay/README-borplay.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/README-borplay.txt -------------------------------------------------------------------------------- /tools/borplay/README-borplay.txt~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/README-borplay.txt~ -------------------------------------------------------------------------------- /tools/borplay/README-listmusic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/README-listmusic.txt -------------------------------------------------------------------------------- /tools/borplay/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/build.bat -------------------------------------------------------------------------------- /tools/borplay/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/build.sh -------------------------------------------------------------------------------- /tools/borplay/source/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/adpcm.c -------------------------------------------------------------------------------- /tools/borplay/source/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/adpcm.h -------------------------------------------------------------------------------- /tools/borplay/source/ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/ao.h -------------------------------------------------------------------------------- /tools/borplay/source/borplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/borplay.c -------------------------------------------------------------------------------- /tools/borplay/source/kbhit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/kbhit.c -------------------------------------------------------------------------------- /tools/borplay/source/kbhit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/kbhit.h -------------------------------------------------------------------------------- /tools/borplay/source/listmusic.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/listmusic.exe -------------------------------------------------------------------------------- /tools/borplay/source/listmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/listmusic.py -------------------------------------------------------------------------------- /tools/borplay/source/mylibaow32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/mylibaow32.c -------------------------------------------------------------------------------- /tools/borplay/source/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/os_types.h -------------------------------------------------------------------------------- /tools/borplay/source/packlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/packlib.py -------------------------------------------------------------------------------- /tools/borplay/source/stristr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/stristr.c -------------------------------------------------------------------------------- /tools/borplay/source/stristr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/borplay/source/stristr.h -------------------------------------------------------------------------------- /tools/ip/IP.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/ip/IP.BIN -------------------------------------------------------------------------------- /tools/ip/logo/fonts/angular.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/ip/logo/fonts/angular.zip -------------------------------------------------------------------------------- /tools/ip/logo/fonts/dukungan.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/ip/logo/fonts/dukungan.zip -------------------------------------------------------------------------------- /tools/ip/logo/iplogo.mr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/ip/logo/iplogo.mr -------------------------------------------------------------------------------- /tools/ip/logo/iplogo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/ip/logo/iplogo.psd -------------------------------------------------------------------------------- /tools/openwav2bor/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/openwav2bor/build.bat -------------------------------------------------------------------------------- /tools/openwav2bor/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/openwav2bor/build.sh -------------------------------------------------------------------------------- /tools/openwav2bor/source/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/openwav2bor/source/adpcm.c -------------------------------------------------------------------------------- /tools/openwav2bor/source/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/openwav2bor/source/adpcm.h -------------------------------------------------------------------------------- /tools/openwav2bor/source/bor2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/openwav2bor/source/bor2wav.c -------------------------------------------------------------------------------- /tools/openwav2bor/source/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/openwav2bor/source/common.h -------------------------------------------------------------------------------- /tools/openwav2bor/source/wav2bor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sega-dreamcast/openbor/HEAD/tools/openwav2bor/source/wav2bor.c --------------------------------------------------------------------------------