├── .github └── workflows │ └── dotnetcore.yml ├── .gitignore ├── CSPspEmu.Benchmark ├── .gitignore ├── CSPspEmu.Benchmark.csproj ├── Program.cs └── RasterizerBenchmark.cs ├── CSPspEmu.Frontend.HelloWorld ├── .gitignore ├── CSPspEmu.Frontend.HelloWorld.csproj ├── OSX.cs ├── Program.cs └── minifire.pbp ├── CSPspEmu.Frontend.OpenTK ├── .gitignore ├── CSPspEmu.Frontend.OpenTK.csproj └── Program.cs ├── CSPspEmu.Frontend.SDL ├── .gitignore ├── CSPspEmu.Frontend.SDL.csproj ├── Program.cs ├── SDL2.dll ├── icon0.png └── minifire.pbp ├── CSPspEmu.Frontend.WinForms ├── .gitignore ├── CSPspEmu.Frontend.WinForms.csproj ├── Class1.cs ├── ObjectListView │ └── ObjectListView │ │ ├── CellEditing │ │ ├── CellEditKeyEngine.cs │ │ ├── CellEditors.cs │ │ └── EditorRegistry.cs │ │ ├── CustomDictionary.xml │ │ ├── DataListView.cs │ │ ├── DataTreeListView.cs │ │ ├── DragDrop │ │ ├── DragSource.cs │ │ ├── DropSink.cs │ │ └── OLVDataObject.cs │ │ ├── FastDataListView.cs │ │ ├── FastObjectListView.cs │ │ ├── Filtering │ │ ├── Cluster.cs │ │ ├── ClusteringStrategy.cs │ │ ├── ClustersFromGroupsStrategy.cs │ │ ├── DateTimeClusteringStrategy.cs │ │ ├── FilterMenuBuilder.cs │ │ ├── Filters.cs │ │ ├── FlagClusteringStrategy.cs │ │ ├── ICluster.cs │ │ ├── IClusteringStrategy.cs │ │ └── TextMatchFilter.cs │ │ ├── Implementation │ │ ├── Attributes.cs │ │ ├── Comparers.cs │ │ ├── DataSourceAdapter.cs │ │ ├── Delegates.cs │ │ ├── Enums.cs │ │ ├── Events.cs │ │ ├── GroupingParameters.cs │ │ ├── Groups.cs │ │ ├── Munger.cs │ │ ├── NativeMethods.cs │ │ ├── NullableDictionary.cs │ │ ├── OLVListItem.cs │ │ ├── OLVListSubItem.cs │ │ ├── OlvListViewHitTestInfo.cs │ │ ├── TreeDataSourceAdapter.cs │ │ ├── VirtualGroups.cs │ │ └── VirtualListDataSource.cs │ │ ├── OLVColumn.cs │ │ ├── ObjectListView.DesignTime.cs │ │ ├── ObjectListView.cs │ │ ├── Rendering │ │ ├── Adornments.cs │ │ ├── Decorations.cs │ │ ├── Overlays.cs │ │ ├── Renderers.cs │ │ ├── Styles.cs │ │ └── TreeRenderer.cs │ │ ├── Resources │ │ ├── clear-filter.png │ │ ├── filter-icons3.png │ │ ├── filter.png │ │ ├── sort-ascending.png │ │ └── sort-descending.png │ │ ├── SubControls │ │ ├── GlassPanelForm.cs │ │ ├── HeaderControl.cs │ │ ├── ToolStripCheckedListBox.cs │ │ └── ToolTipControl.cs │ │ ├── TreeListView.cs │ │ ├── Utilities │ │ ├── ColumnSelectionForm.Designer.cs │ │ ├── ColumnSelectionForm.cs │ │ ├── ColumnSelectionForm.resources │ │ ├── ColumnSelectionForm.resx │ │ ├── Generator.cs │ │ ├── OLVExporter.cs │ │ └── TypedObjectListView.cs │ │ └── VirtualObjectListView.cs ├── Program.cs ├── Resources │ ├── Gallery-icon.png │ ├── Images │ │ └── Languages │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fr.png │ │ │ ├── it.png │ │ │ ├── ja.png │ │ │ ├── pt.png │ │ │ └── us.png │ ├── application_view_xp_terminal.png │ ├── blog.png │ ├── btn_donate_LG.gif │ ├── bug.png │ ├── camera.png │ ├── control_pause.png │ ├── control_play.png │ ├── es.png │ ├── facebook_icon-png8.png │ ├── favicon.png │ ├── feed.png │ ├── folder.png │ ├── github_icon.png │ ├── help.png │ ├── icon0.png │ ├── kawagames.png │ ├── link.png │ ├── magnifier.png │ ├── paypal-donate-button.gif │ ├── projection_screen.png │ ├── psp-3000_small.png │ ├── psp8-png8.png │ ├── pspicon_16.png │ ├── quality.png │ ├── quality1.png │ ├── safe.png │ ├── script-binary-icon.png │ ├── script-binary-icon1.png │ ├── twitter_icon-png8.png │ ├── uac_icon.png │ ├── us.png │ └── world.png └── Winforms │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── ButtonMappingForm.Designer.cs │ ├── ButtonMappingForm.cs │ ├── ButtonMappingForm.resx │ ├── CheatsForm.Designer.cs │ ├── CheatsForm.cs │ ├── CheatsForm.resx │ ├── FunctionViewerForm.Designer.cs │ ├── FunctionViewerForm.cs │ ├── FunctionViewerForm.resx │ ├── GLControl.cs │ ├── GLControl.resx │ ├── GameList.cs │ ├── GameListComponent.Designer.cs │ ├── GameListComponent.cs │ ├── GameListComponent.resx │ ├── IPspDisplayControl.cs │ ├── Icons.txt │ ├── ProgressForm.Designer.cs │ ├── ProgressForm.cs │ ├── ProgressForm.resx │ ├── PspDisplayForm.Designer.cs │ ├── PspDisplayForm.cs │ ├── PspDisplayForm.resx │ ├── PspOpenglDisplayControl.cs │ ├── PspOpenglDisplayControl.resx │ ├── TextureViewerForm.Designer.cs │ ├── TextureViewerForm.cs │ ├── TextureViewerForm.resx │ └── app.config ├── CSPspEmu.Frontend.XamarinForms ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── CSPspEmu.Frontend.XamarinForms.csproj ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Main.storyboard ├── ViewController.cs ├── ViewController.designer.cs └── obj │ └── x86 │ └── Release │ └── CSPspEmu.Frontend.XamarinForms.csprojAssemblyReference.cache ├── CSPspEmu.Tests.Integration ├── .gitignore ├── AutoTestsProgram.cs ├── CSPspEmu.Tests.Integration.csproj ├── UnitTest1.cs └── xunit.runner.json ├── CSPspEmu.Tests ├── .gitignore ├── CSPspEmu.Tests.csproj ├── CSPspEmu │ ├── Cpu │ │ ├── Assembler │ │ │ ├── MipsAssemblerTest.cs │ │ │ └── MipsDisassemblerTest.cs │ │ ├── CpuUtils.cs │ │ ├── Dynarec │ │ │ ├── DynarecFunctionCompilerTaskTest.cs │ │ │ └── DynarecFunctionCompilerTest.cs │ │ ├── Emitter │ │ │ └── CpuEmitterTest.cs │ │ ├── InstructionTest.cs │ │ ├── Interpreter │ │ │ └── InterpreterTest.cs │ │ ├── KirkTest.cs │ │ ├── Switch │ │ │ └── EmitLookupGeneratorTest.cs │ │ └── Table │ │ │ └── InstructionTableTest.cs │ ├── Gpu │ │ ├── GpuProcessorTest.cs │ │ └── VertexReading │ │ │ └── VertexReaderDynarecTest.cs │ ├── HLE │ │ ├── CStringFormaterTest.cs │ │ ├── Formats │ │ │ ├── Archive │ │ │ │ └── ZipTest.cs │ │ │ ├── CsoTest.cs │ │ │ ├── EncryptedPrxTest.cs │ │ │ ├── Font │ │ │ │ └── PGFTest.cs │ │ │ ├── PbpTest.cs │ │ │ ├── PsfTest.cs │ │ │ └── video │ │ │ │ ├── MpegPsDemuxerTest.cs │ │ │ │ └── PmfTest.cs │ │ ├── HlePspThreadManagerTest.cs │ │ ├── HlePspThreadTest.cs │ │ ├── Loader │ │ │ └── ElfLoaderTest.cs │ │ ├── MemoryPartitionTest.cs │ │ ├── Modules │ │ │ ├── BaseModuleTest.cs │ │ │ ├── TestHleUtils.cs │ │ │ ├── TestInput │ │ │ │ ├── sample.deflated │ │ │ │ └── sample.inflated │ │ │ ├── iofilemgr │ │ │ │ └── umd │ │ │ │ │ └── ioctlTest.cs │ │ │ ├── rtc │ │ │ │ └── sceRtcTest.cs │ │ │ ├── sceDefltTest.cs │ │ │ └── utils │ │ │ │ └── UtilsForUserTest.cs │ │ ├── PreemptiveSchedulerTest.cs │ │ ├── TestHleUtils.cs │ │ └── Vfs │ │ │ ├── HleIoManagerTest.cs │ │ │ ├── Iso │ │ │ ├── CsoProxyStreamTest.cs │ │ │ └── IsoTest.cs │ │ │ └── Local │ │ │ └── HleIoDriverLocalFileSystemTest.cs │ └── Utils │ │ └── InjectTest.cs ├── CSharpUtils │ ├── Acme1FileTest.cs │ ├── AsyncTaskTest.cs │ ├── ConcatStreamTest.cs │ ├── ConsumerMemoryStreamTest.cs │ ├── Containers │ │ └── RedBlackTree │ │ │ └── RedBlackTreeWithStatsTest.cs │ ├── DateTimeRangeTest.cs │ ├── Drawing │ │ └── BitmapExtensionTest.cs │ ├── Ext │ │ ├── Compression │ │ │ ├── HuffmanTest.cs │ │ │ ├── LzBufferTest.cs │ │ │ ├── MatcherTest.cs │ │ │ ├── RleMatcherTest.cs │ │ │ └── Zip │ │ │ │ └── ZipArchiveTest.cs │ │ ├── SpaceAssigner │ │ │ ├── SpaceAssigner1DTest.cs │ │ │ └── SpaceAssigner1D_SpaceTest.cs │ │ ├── StreamExtensionsExtTest.cs │ │ └── Streams │ │ │ └── ProxyStreamReadWriteAnalyzerTest.cs │ ├── Extensions │ │ ├── StreamExtensionsTest.cs │ │ └── StructExtensionsTest.cs │ ├── Factory │ │ └── MockeableFactoryTest.cs │ ├── Getopt │ │ └── GetoptTest.cs │ ├── HashingTest.cs │ ├── Json │ │ └── JSONTest.cs │ ├── LinqExExtensionsTest.cs │ ├── ListExtensionsTest.cs │ ├── MathUtilsTest.cs │ ├── Paths.cs │ ├── PointerUtilsTest.cs │ ├── ProduceConsumeBufferTest.cs │ ├── ReaderWriterLockExtensionsTest.cs │ ├── RinbBufferTest.cs │ ├── SerializationExtensionsTest.cs │ ├── SliceStreamTest.cs │ ├── StreamExtensionsTest.cs │ ├── Streams │ │ ├── MapStreamTest.cs │ │ ├── StreamBitReaderTest.cs │ │ ├── StreamChunker2Test.cs │ │ ├── StreamChunkerTest.cs │ │ └── ZeroStreamTest.cs │ ├── StructUtilsTest.cs │ ├── TestInput │ │ ├── sample.deflated │ │ └── sample.inflated │ ├── Threading │ │ ├── CustomThreadPoolTest.cs │ │ └── GreenThreadTest.cs │ ├── TimeSamplerTest.cs │ └── TypeUtilsTest.cs ├── Gpu │ ├── GpuImplSoftTest.cs │ └── RasterizerTest.cs ├── IntExtTest.cs ├── SafeILGenerator │ ├── Ast │ │ ├── Generators │ │ │ ├── GeneratorCSharpTest.cs │ │ │ └── GeneratorILTest.cs │ │ ├── Optimizers │ │ │ └── AstOptimizerTest.cs │ │ ├── Serializers │ │ │ └── UnitTest1.cs │ │ └── Utils │ │ │ └── IndentedStringBuilderTest.cs │ ├── BenchMarkTest.cs │ ├── TestUtils.cs │ └── Util │ │ ├── ILFieldInfoTest.cs │ │ └── ILInstanceHolderPoolTest.cs └── UnitTest1.cs ├── CSPspEmu.sln ├── CSPspEmu ├── .gitignore ├── Audio │ ├── AudioComponentThread.cs │ ├── Impl │ │ ├── Alsa │ │ │ ├── Alsa.cs │ │ │ └── AudioAlsaImpl.cs │ │ ├── Null │ │ │ └── AudioImplNull.cs │ │ ├── Openal │ │ │ ├── AudioStream.cs │ │ │ └── PspAudioOpenalImpl.cs │ │ └── WaveOut │ │ │ ├── PspAudioWaveOutImpl.cs │ │ │ └── WaveLib │ │ │ ├── FifoStream.cs │ │ │ ├── WaveIn.cs │ │ │ ├── WaveNative.cs │ │ │ ├── WaveOut.cs │ │ │ └── WaveStream.cs │ ├── PspAudio.cs │ ├── PspAudioChannel.cs │ ├── PspAudioImpl.cs │ └── SoundSample.cs ├── CPU │ ├── Assembler │ │ ├── MipsAssembler.cs │ │ └── MipsDisassembler.cs │ ├── CpuComponentThread.cs │ ├── CpuConfig.cs │ ├── CpuProcessor.cs │ ├── CpuThreadState.cs │ ├── Dynarec │ │ ├── Ast │ │ │ ├── AstNodeExtensions.cs │ │ │ ├── AstNodeStmPspInstruction.cs │ │ │ ├── AstOptimizerPsp.cs │ │ │ ├── GeneratorCSharpPsp.cs │ │ │ └── GeneratorILPsp.cs │ │ ├── DynarecBranchAnalyzer.cs │ │ ├── DynarecFunction.cs │ │ ├── DynarecFunctionCompiler.cs │ │ ├── Emitter │ │ │ ├── AstMipsGenerator.cs │ │ │ ├── CpuEmitter.Cpu.cs │ │ │ ├── CpuEmitter.Fpu.cs │ │ │ ├── CpuEmitter.Vfpu.cs │ │ │ ├── CpuEmitter.cs │ │ │ ├── CpuEmitterUtils.cs │ │ │ └── MipsMethodEmitter.cs │ │ └── _DynarecConfig.cs │ ├── ICpuConnector.cs │ ├── Instruction.cs │ ├── InstructionCache │ │ ├── MethodCache.cs │ │ └── MethodCacheInfo.cs │ ├── InstructionReader.cs │ ├── Interpreter │ │ ├── CpuInterpreter.cs │ │ └── CpuInterpreterSwitchGenerator.cs │ ├── InvalidAddressException.cs │ ├── NativeSyscallInfo.cs │ ├── PspBreakException.cs │ ├── Switch │ │ └── EmitLookupGenerator.cs │ ├── SyscallInfo.cs │ ├── Table │ │ ├── AddressType.cs │ │ ├── InstructionInfo.cs │ │ ├── InstructionName.cs │ │ ├── InstructionNames.cs │ │ ├── InstructionTable.cs │ │ └── InstructionType.cs │ └── VFpu │ │ ├── VfpuCell.cs │ │ ├── VfpuConstants.cs │ │ ├── VfpuControlRegistersEnum.cs │ │ ├── VfpuPrefix.cs │ │ ├── VfpuRegisterInfo.cs │ │ ├── VfpuRegisterInt.cs │ │ ├── VfpuRegisterType.cs │ │ └── VfpuUtils.cs ├── CSPspEmu.csproj ├── Devices │ ├── Battery │ │ └── Battery.cs │ ├── Controller │ │ ├── PspController.cs │ │ ├── PspCtrlButtons.cs │ │ └── SceCtrlData.cs │ ├── Display │ │ ├── DisplayComponentThread.cs │ │ ├── DisplayConfig.cs │ │ └── PspDisplay.cs │ ├── Ipl │ │ └── IplReader.cs │ ├── Kirk │ │ └── Kirk.cs │ ├── Memory │ │ ├── DefaultMemoryInfo.cs │ │ ├── FastPspMemory.cs │ │ ├── FastPspMemoryUnsafe.cs │ │ ├── FastPspMemoryUtils.cs │ │ ├── IPspMemoryInfo.cs │ │ ├── LazyPspMemory.cs │ │ ├── NormalPspMemory.cs │ │ ├── PspMemory.cs │ │ ├── PspMemoryStream.cs │ │ └── PspPointer.cs │ ├── Nand │ │ └── NandReader.cs │ └── Rtc │ │ ├── PspRtc.cs │ │ ├── PspTimeStruct.cs │ │ └── PspVirtualTimer.cs ├── Emulator │ ├── ApplicationPaths.cs │ ├── ComponentThread.cs │ ├── GlobalConfig.cs │ ├── IInterruptManager.cs │ ├── IRunnableComponent.cs │ ├── NewInterop.cs │ ├── PluginInfo.cs │ ├── PspEmulator.cs │ ├── PspGlobalConfiguration.cs │ ├── PspHleRunningConfig.cs │ ├── PspInjectContext.cs │ ├── PspPluginImpl.cs │ ├── PspRunner.cs │ ├── PspStoredConfig.cs │ ├── PspUntestedAttribute.cs │ └── Simple │ │ └── SimplifiedPspEmulator.cs ├── GE │ ├── Formats │ │ ├── PspWavefrontObjWriter.cs │ │ └── WavefrontObjWriter.cs │ ├── GpuComponentThread.cs │ ├── GpuConfig.cs │ ├── GpuDisplayList.cs │ ├── GpuOpCodes.cs │ ├── GpuProcessor.cs │ ├── GuPixelFormats.cs │ ├── IGpuConnector.cs │ ├── PspGeCallbackData.cs │ ├── State │ │ ├── GpuRectStruct.cs │ │ └── GpuState.cs │ ├── TextureCache.cs │ ├── VertexInfo.cs │ └── VertexReading │ │ └── VertexReader.cs ├── GPU │ ├── GpuImpl.cs │ └── Impl │ │ ├── Null │ │ └── GpuImplNull.cs │ │ ├── Opengl │ │ ├── Modules │ │ │ ├── OpenglGpuImplClear.cs │ │ │ ├── OpenglGpuImplCommon.cs │ │ │ ├── OpenglGpuImplMatrix.cs │ │ │ └── RenderbufferManager.cs │ │ ├── OpenglGpuImpl.cs │ │ ├── Shaders.cs │ │ ├── TextureCacheOpengl.cs │ │ └── Utils │ │ │ ├── OpenglGpuImplConversionTables.cs │ │ │ └── VertexUtils.cs │ │ └── Soft │ │ ├── GpuImplSoft.cs │ │ └── Rasterizer.cs ├── GUI │ ├── CommonGuiDisplayOpengl.cs │ ├── CommonGuiInput.cs │ ├── GuiConfig.cs │ ├── HQ2X │ │ ├── ColorAlphaLerp.cs │ │ ├── ColorAlphaThreshold.cs │ │ ├── ColorOnlyLerp.cs │ │ ├── ColorOnlyThreshold.cs │ │ ├── ColorSimpleAlphaLerp.cs │ │ ├── ColorSimpleAlphaThreshold.cs │ │ ├── Engine.cs │ │ ├── ILerp.cs │ │ ├── IThreshold.cs │ │ └── RGBA.cs │ ├── IGuiExternalInterface.cs │ ├── SMAA │ │ ├── SMAA.h │ │ ├── Smaa.cs │ │ ├── smaa_area.raw │ │ └── smaa_search.raw │ ├── XBR │ │ ├── OutOfBoundsMode.cs │ │ ├── Shader │ │ │ ├── Shader_2xBR.frag │ │ │ ├── XBRShader.cs │ │ │ ├── shader1.frag │ │ │ └── shader2.frag │ │ ├── cImage.cs │ │ ├── cRGBCache.cs │ │ ├── libXBR2x.cs │ │ └── sPixel.cs │ ├── cheats │ │ ├── CWCheatEntry.cs │ │ ├── CWCheatPlugin.cs │ │ └── LoadFileMessage.cs │ └── texture │ │ └── TextureHookPlugin.cs ├── HLE │ ├── ArgumentReader.cs │ ├── DelegateInfo.cs │ ├── HleCallback.cs │ ├── HleCallbackManager.cs │ ├── HleConfig.cs │ ├── HleEmulatorFinalizeCallbackException.cs │ ├── HleFormats │ │ ├── Archive │ │ │ └── ZipArchive.cs │ │ ├── CompressedIsoProxyStream.cs │ │ ├── Cso.cs │ │ ├── Dax.cs │ │ ├── Elf.cs │ │ ├── ElfPsp.cs │ │ ├── EncryptedPrx.cs │ │ ├── Font │ │ │ ├── BitReader.cs │ │ │ ├── PGF.Structs.cs │ │ │ └── PGF.cs │ │ ├── FormatDetector.cs │ │ ├── ICompressedIso.cs │ │ ├── IsoFile.cs │ │ ├── IsoLoader.cs │ │ ├── Pbp.cs │ │ ├── Pgd │ │ │ └── PgdProxyStream.cs │ │ └── Psf.cs │ ├── HleFunctionEntry.cs │ ├── HleLibrary.cs │ ├── HleMedia │ │ ├── CRC16.cs │ │ ├── CRC32.cs │ │ ├── FrameCrc.cs │ │ ├── FrameUtils.cs │ │ ├── MathUtils.cs │ │ ├── README.txt │ │ ├── audio │ │ │ ├── At3 │ │ │ │ ├── MaiAT3PlusCoreDecoder.cs │ │ │ │ ├── MaiAT3PlusCoreDecoder_DecFunc.cs │ │ │ │ ├── MaiAT3PlusCoreDecoder_StaticData.cs │ │ │ │ ├── MaiAT3PlusCoreDecoder_SubFunc.cs │ │ │ │ ├── MaiAT3PlusFrameDecoder.cs │ │ │ │ ├── ManagedPointer.cs │ │ │ │ ├── SUB │ │ │ │ │ ├── MaiBitReader.cs │ │ │ │ │ └── MaiQueue0.cs │ │ │ │ └── Sample │ │ │ │ │ └── MiniPlayer.cs │ │ │ ├── RiffWaveReader.cs │ │ │ ├── Vag.cs │ │ │ └── Wav.cs │ │ ├── av │ │ │ ├── AVComponentDescriptor.cs │ │ │ ├── AVFrame.cs │ │ │ ├── AVPacket.cs │ │ │ ├── AVPanScan.cs │ │ │ ├── AVPicture.cs │ │ │ ├── AVPixFmtDescriptor.cs │ │ │ ├── AVRational.cs │ │ │ ├── Constants.cs │ │ │ ├── ImageUtils.cs │ │ │ └── PixFmtYUV420P.cs │ │ ├── h264 │ │ │ └── decoder │ │ │ │ ├── CABACContext.cs │ │ │ │ ├── CAVLCContext.cs │ │ │ │ ├── CAVLCTables.cs │ │ │ │ ├── DSPContext.cs │ │ │ │ ├── DebugTool.cs │ │ │ │ ├── ErrorResilience.cs │ │ │ │ ├── GetBitContext.cs │ │ │ │ ├── H264Context.cs │ │ │ │ ├── H264DSPContext.cs │ │ │ │ ├── H264Data.cs │ │ │ │ ├── H264Decoder.cs │ │ │ │ ├── H264PredictionContext.cs │ │ │ │ ├── IMbInfo.cs │ │ │ │ ├── InternalBuffer.cs │ │ │ │ ├── LoopFilter.cs │ │ │ │ ├── MMCO.cs │ │ │ │ ├── MotionEstContext.cs │ │ │ │ ├── MpegEncContext.cs │ │ │ │ ├── PMbInfo.cs │ │ │ │ ├── ParseContext.cs │ │ │ │ ├── PictureParameterSet.cs │ │ │ │ ├── PutBitContext.cs │ │ │ │ ├── RL_VLC_ELEM.cs │ │ │ │ ├── Rectangle.cs │ │ │ │ ├── SEIDecoder.cs │ │ │ │ ├── ScanTable.cs │ │ │ │ ├── SequenceParameterSet.cs │ │ │ │ ├── VLC.cs │ │ │ │ └── VLCcode.cs │ │ ├── player │ │ │ ├── At3pFrameDecoder.cs │ │ │ ├── FrameDecoder.cs │ │ │ ├── H264FrameDecoder.cs │ │ │ └── VideoPacket.cs │ │ ├── util │ │ │ ├── Arrays.cs │ │ │ ├── Buffer.cs │ │ │ ├── Frame.cs │ │ │ └── HashUtil.cs │ │ └── video │ │ │ ├── IDemuxer.cs │ │ │ ├── MpegPsDemuxer.cs │ │ │ └── Pmf.cs │ ├── HleModules │ │ ├── HleModulesRoot.cs │ │ ├── README.txt │ │ ├── _unknownPrx │ │ │ ├── KUBridge.cs │ │ │ ├── ModuleMgrForKernel.cs │ │ │ ├── SysclibForKernel.cs │ │ │ ├── sceCcc.cs │ │ │ ├── sceDeflt.cs │ │ │ ├── sceMp3.cs │ │ │ ├── sceMp4.cs │ │ │ ├── sceNp.cs │ │ │ ├── sceNpAuth.cs │ │ │ ├── sceNpService.cs │ │ │ ├── scePspNpDrm_user.cs │ │ │ ├── sceUsb.cs │ │ │ └── sceUsbstorBoot.cs │ │ ├── audio │ │ │ ├── sceAudio.cs │ │ │ ├── sceAudio_Driver.cs │ │ │ └── sceVaudio.cs │ │ ├── avcodec │ │ │ └── sceAudiocodec.cs │ │ ├── ctrl │ │ │ └── sceCtrl.cs │ │ ├── display │ │ │ └── sceDisplay.cs │ │ ├── emulator │ │ │ └── Emulator.cs │ │ ├── exceptionman │ │ │ └── ExceptionManagerForKernel.cs │ │ ├── ge │ │ │ └── sceGe_user.cs │ │ ├── hen │ │ │ └── libpspsystemctrl_kernel │ │ │ │ └── SystemCtrlForKernel.cs │ │ ├── hpremote │ │ │ ├── sceHprm.cs │ │ │ └── sceHprm_driver.cs │ │ ├── http │ │ │ ├── sceHttp.cs │ │ │ └── sceSsl.cs │ │ ├── ifhandler │ │ │ └── sceNetIfhandle_lib.cs │ │ ├── impose │ │ │ └── sceImpose.cs │ │ ├── interruptman │ │ │ └── InterruptManager.cs │ │ ├── iofilemgr │ │ │ ├── IoFileMgrForKernel.cs │ │ │ ├── IoFileMgrForUser.Device.cs │ │ │ ├── IoFileMgrForUser.Directory.cs │ │ │ ├── IoFileMgrForUser.Driver.cs │ │ │ ├── IoFileMgrForUser.Files.Async.cs │ │ │ ├── IoFileMgrForUser.Files.cs │ │ │ ├── IoFileMgrForUser.IoDelay.cs │ │ │ └── IoFileMgrForUser.cs │ │ ├── libatrac3plus │ │ │ ├── sceAtrac3plus.Utils.cs │ │ │ └── sceAtrac3plus.cs │ │ ├── libfont │ │ │ ├── sceLibFont.Font.cs │ │ │ ├── sceLibFont.Library.cs │ │ │ ├── sceLibFont.Utils.cs │ │ │ └── sceLibFont.cs │ │ ├── loadcore │ │ │ └── LoadCoreForKernel.cs │ │ ├── loadexec │ │ │ ├── LoadExecForUser.cs │ │ │ └── sceDmac.cs │ │ ├── lowio │ │ │ └── sceSysreg_driver.cs │ │ ├── mediaman │ │ │ └── sceUmdUser.cs │ │ ├── modulemgr │ │ │ ├── ModuleMgrForUser.cs │ │ │ └── sceModuleManager.cs │ │ ├── mpeg │ │ │ ├── Mpeg.cs │ │ │ ├── sceMpeg.Atrac.cs │ │ │ ├── sceMpeg.Avc.cs │ │ │ ├── sceMpeg.cs │ │ │ └── sceMpegbase.cs │ │ ├── openpsid │ │ │ └── sceOpenPSID.cs │ │ ├── pmfplayer │ │ │ ├── scePsmf.cs │ │ │ └── scePsmfPlayer.cs │ │ ├── power │ │ │ ├── scePower.Callbacks.cs │ │ │ ├── scePower.Frequencies.cs │ │ │ └── scePower.cs │ │ ├── pspnet │ │ │ ├── sceNet.cs │ │ │ ├── sceNetAdhoc.cs │ │ │ ├── sceNetAdhocDiscover.cs │ │ │ ├── sceNetAdhocMatching.cs │ │ │ ├── sceNetAdhocctl.cs │ │ │ ├── sceNetApctl.cs │ │ │ ├── sceNetInet.cs │ │ │ └── sceNetResolver.cs │ │ ├── registry │ │ │ └── sceReg.cs │ │ ├── rtc │ │ │ └── sceRtc.cs │ │ ├── sc_sascore │ │ │ ├── sceSasCore.Utils.cs │ │ │ ├── sceSasCore.Voices.cs │ │ │ └── sceSasCore.cs │ │ ├── sceMemlmd │ │ │ └── semaphore.cs │ │ ├── stdio │ │ │ ├── StdioForKernel.cs │ │ │ └── StdioForUser.cs │ │ ├── sysmem │ │ │ ├── KDebugForKernel.cs │ │ │ ├── SysMemForKernel.cs │ │ │ ├── SysMemUserForUser.cs │ │ │ ├── sceSuspendForUser.cs │ │ │ └── sceSysEventForKernel.cs │ │ ├── systimer │ │ │ └── SysTimerForKernel.cs │ │ ├── threadman │ │ │ ├── ThreadManForKernel.cs │ │ │ ├── ThreadManForUser.Callbacks.cs │ │ │ ├── ThreadManForUser.EventFlag.cs │ │ │ ├── ThreadManForUser.Fpl.cs │ │ │ ├── ThreadManForUser.LwMutex.cs │ │ │ ├── ThreadManForUser.Mbx.cs │ │ │ ├── ThreadManForUser.MsgPipes.cs │ │ │ ├── ThreadManForUser.Mutex.cs │ │ │ ├── ThreadManForUser.Semaphores.cs │ │ │ ├── ThreadManForUser.Threads.cs │ │ │ ├── ThreadManForUser.VTimer.cs │ │ │ ├── ThreadManForUser.Vpl.cs │ │ │ ├── ThreadManForUser.cs │ │ │ └── Tools │ │ │ │ └── VirtualTimer.cs │ │ ├── usersystemlib │ │ │ └── Kernel_Library.cs │ │ ├── utility │ │ │ ├── sceUtility.MsgDialog.cs │ │ │ ├── sceUtility.Netconf.cs │ │ │ ├── sceUtility.Osk.cs │ │ │ ├── sceUtility.Savedata.cs │ │ │ ├── sceUtility.Sysparam.cs │ │ │ └── sceUtility.cs │ │ ├── utils │ │ │ ├── UtilsForKernel.cs │ │ │ └── UtilsForUser.cs │ │ └── wlan │ │ │ └── sceWlanDrv_lib.cs │ ├── HleThread.cs │ ├── HleUidPool.cs │ ├── HleUidPoolSpecial.cs │ ├── Interop │ │ ├── HleEmulatorSpecialAddresses.cs │ │ └── HleInterop.cs │ ├── Loader │ │ ├── ElfConfig.cs │ │ ├── ElfLoader.cs │ │ └── ElfPspLoader.cs │ ├── Managers │ │ ├── HleEventFlagManager.cs │ │ ├── HleInterruptManager.cs │ │ ├── HleIoManager.cs │ │ ├── HleMemoryManager.cs │ │ ├── HleModuleManager.cs │ │ ├── HleRegistryManager.cs │ │ ├── HleSemaphoreManager.cs │ │ ├── HleThreadManager.cs │ │ └── HleUidPoolManager.cs │ ├── MemoryPartition.cs │ ├── Modules │ │ ├── HleModule.cs │ │ ├── HleModuleGuest.cs │ │ ├── HleModuleHost.Proxy.cs │ │ ├── HleModuleHost.cs │ │ └── SceModule.cs │ ├── PreemptiveScheduler.cs │ ├── PspLanguages.cs │ ├── Threading │ │ ├── EventFlags │ │ │ └── HleEventFlag.cs │ │ └── Semaphores │ │ │ ├── HleSemaphore.cs │ │ │ ├── SceKernelSemaInfo.cs │ │ │ ├── SceKernelSemaOptParam.cs │ │ │ ├── SemaphoreAttribute.cs │ │ │ └── SemaphoreId.cs │ ├── Types │ │ ├── Attributes │ │ │ ├── HlePspFunctionAttribute.cs │ │ │ ├── HlePspModuleAttribute.cs │ │ │ ├── HlePspNotImplementedAttribute.cs │ │ │ └── HlePspUnknownDefinitionAttribute.cs │ │ ├── PspThreadAttributes.cs │ │ ├── PspThreadStatus.cs │ │ ├── PspVersion.cs │ │ ├── SceKernelErrors.cs │ │ ├── SceKernelException.cs │ │ ├── SceKernelSelfStopUnloadModuleException.cs │ │ ├── SceKernelSysClock.cs │ │ └── Types.cs │ └── WakeUpCallbackDelegate.cs ├── LLE │ ├── DebugPspMemory.cs │ ├── Dma.cs │ ├── DmaEnum.cs │ ├── ILleDma.cs │ ├── LLEState.cs │ ├── LleGPIO.cs │ ├── LleKirk.cs │ ├── LleNAND.cs │ ├── LlePspComponent.cs │ ├── LlePspCpu.cs │ ├── Program.cs │ └── TransferUtils.cs ├── Resources │ ├── ResourceArchive.cs │ ├── Translations.xml │ ├── flash0.zip │ └── psp.ico └── Utils │ ├── AudioMixer.cs │ ├── CSharpPlatform │ ├── AL │ │ └── AL.cs │ ├── GL │ │ ├── DynamicLibraryGL.cs │ │ ├── GL.cs │ │ ├── GLContextFactory.cs │ │ ├── IOpenglContext.cs │ │ ├── Impl │ │ │ ├── Android │ │ │ │ ├── AndroidGLContext.cs │ │ │ │ └── EGL.cs │ │ │ ├── EGL.cs │ │ │ ├── Linux │ │ │ │ ├── GLX.cs │ │ │ │ └── LinuxGLContext.cs │ │ │ ├── Mac │ │ │ │ ├── MacGlContext.cs │ │ │ │ └── NSOpenGLContext.cs │ │ │ └── Windows │ │ │ │ ├── WGL.cs │ │ │ │ └── WinGLContext.cs │ │ └── Utils │ │ │ ├── GLAttribute.cs │ │ │ ├── GLBuffer.cs │ │ │ ├── GLMatrix4.cs │ │ │ ├── GLRenderTarget.cs │ │ │ ├── GLShader.cs │ │ │ ├── GLShaderFilter.cs │ │ │ ├── GLTexture.cs │ │ │ ├── GLTextureUnit.cs │ │ │ └── GLVector.cs │ ├── Intrinsics.cs │ ├── Library │ │ ├── DynamicLibraryFactory.cs │ │ ├── IDynamicLibrary.cs │ │ └── Impl │ │ │ ├── DynamicLibraryMac.cs │ │ │ ├── DynamicLibraryPosix.cs │ │ │ └── DynamicLibraryWindows.cs │ ├── MapImportClassToClassWithDelegates.cs │ ├── NativeLibraryResolver.cs │ ├── Platform.cs │ ├── RectangleF.cs │ ├── SDL │ │ ├── SDL2.cs │ │ ├── SDL2_image.cs │ │ ├── SDL2_mixer.cs │ │ └── SDL2_ttf.cs │ └── UI │ │ └── Dialog.cs │ ├── CSharpUtils │ ├── AnonymousComparer.cs │ ├── ArrayEqualityComparer.cs │ ├── ArrayUtils.cs │ ├── Arrays │ │ ├── ArrayWrapper.cs │ │ └── IArray.cs │ ├── AsyncTask.cs │ ├── BitReader.cs │ ├── BitUtils.cs │ ├── BitWriter.cs │ ├── BitWriter2.cs │ ├── BitmapChannel.cs │ ├── BitmapUtils.cs │ ├── ColorFormat.cs │ ├── ColorFormats.cs │ ├── ColorUtils.cs │ ├── Compression │ │ ├── Huffman.cs │ │ ├── Lz │ │ │ ├── LzMatcher.cs │ │ │ ├── Matcher.cs │ │ │ └── RleMatcher.cs │ │ └── Zip │ │ │ └── ZipArchive.cs │ ├── ConsoleUtils.cs │ ├── Containers │ │ └── RedBlackTree │ │ │ ├── RedBlackTreeWithStats.cs │ │ │ └── RedBlackTreeWithStatsQueryProvider.cs │ ├── ConvertEx.cs │ ├── Crc32.cs │ ├── DateTimeRange.cs │ ├── Diff.cs │ ├── Distance │ │ ├── DistanceEntry.cs │ │ └── DistanceMap.cs │ ├── Endian │ │ └── EndianStructs.cs │ ├── Endianness.cs │ ├── EnumerableComparer.cs │ ├── Extensions │ │ ├── ArrayExtensions.cs │ │ ├── BinaryReaderWriterExtensions.cs │ │ ├── BitmapExtension.cs │ │ ├── ColorExtensions.cs │ │ ├── DateTimeExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EnumExtensions.cs │ │ ├── GraphicsExtensions.cs │ │ ├── ICustomAttributeProviderExtensions.cs │ │ ├── IntegerExtensions.cs │ │ ├── LinkedListExtensions.cs │ │ ├── LinqExExtensions.cs │ │ ├── LinqExExtensionsExt.cs │ │ ├── LinqXmlExExtensions.cs │ │ ├── ListExtensions.cs │ │ ├── ReaderWriterLockExtensions.cs │ │ ├── SerializationExtensions.cs │ │ ├── StreamExtensions.cs │ │ ├── StreamExtensionsExt.cs │ │ ├── StringExtensions.cs │ │ ├── StructExtensions.cs │ │ ├── TextReaderExtensions.cs │ │ ├── TimeSpanExtensions.cs │ │ └── TypeExtensions.cs │ ├── Factory │ │ ├── Factory.cs │ │ └── MockeableFactory.cs │ ├── FieldMapping.cs │ ├── FileUtils.cs │ ├── Getopt │ │ ├── Getopt.cs │ │ └── GetoptCommandLineProgram.cs │ ├── Hashing.cs │ ├── Iterators.cs │ ├── Json │ │ ├── IJsonSerializable.cs │ │ └── JSON.cs │ ├── LanguageUtils.cs │ ├── LazyHolder.cs │ ├── LinqEqualityComparer.cs │ ├── Logger.cs │ ├── MathFloat.cs │ ├── MathUtils.cs │ ├── Misc │ │ └── Acme1 │ │ │ └── Acme1File.cs │ ├── NumberUtils.cs │ ├── PointerUtils.cs │ ├── Pool.cs │ ├── ProcessUtils.cs │ ├── ProduceConsumeBuffer.cs │ ├── RGBA.cs │ ├── RingBuffer.cs │ ├── SpaceAssigner │ │ ├── SpaceAssigner1D.cs │ │ ├── SpaceAssigner1DUniqueAllocator.cs │ │ ├── SpaceAssigner1DUniqueAllocatorStream.cs │ │ └── SpaceAssigner2D.cs │ ├── StackTraceUtils.cs │ ├── Streams │ │ ├── ConcatStream.cs │ │ ├── ConsumerMemoryStream.cs │ │ ├── FilterStream.cs │ │ ├── MapStream.cs │ │ ├── PointerStream.cs │ │ ├── ProxyStream.cs │ │ ├── ProxyStreamReadWriteAnalyzer.cs │ │ ├── RingBufferStream.cs │ │ ├── SerializerUtils.cs │ │ ├── SliceStream.cs │ │ ├── StreamBitReader.cs │ │ ├── StreamChunker.cs │ │ ├── StreamChunker2.cs │ │ ├── StreamStructArrayWrapper.cs │ │ ├── StreamStructCachedArrayWrapper.cs │ │ └── ZeroStream.cs │ ├── StructUtils.cs │ ├── ThreadUtils.cs │ ├── Threading │ │ ├── Coroutines.cs │ │ ├── CustomThreadPool.cs │ │ ├── GreenThread.cs │ │ ├── GreenThreadException.cs │ │ ├── TaskQueue.cs │ │ └── ThreadMessageBus.cs │ ├── TimeSampler.cs │ ├── TimeSpanUtils.cs │ ├── TypeUtils.cs │ ├── Wildcard.cs │ └── XmlSerializerUtils.cs │ ├── CStringFormater.cs │ ├── Compat │ ├── Application.cs │ └── Imaging.cs │ ├── Crypto │ └── Crypto.cs │ ├── DebugUtils.cs │ ├── HalfFloat.cs │ ├── Hashing.cs │ ├── IArgumentReader.cs │ ├── Imaging │ ├── Bitmap32.cs │ └── PNG.cs │ ├── Injector │ ├── IInjectInitialize.cs │ ├── InjectAttribute.cs │ ├── InjectContext.cs │ ├── InjectMapAttribute.cs │ └── MessageBus.cs │ ├── IntExt.cs │ ├── MatrixExt.cs │ ├── MessagePipe.cs │ ├── OutputPixel.cs │ ├── SafeILGenerator │ ├── Ast │ │ ├── AstArgument.cs │ │ ├── AstFunction.cs │ │ ├── AstGenerator.cs │ │ ├── AstLabel.cs │ │ ├── AstLocal.cs │ │ ├── AstUtils.cs │ │ ├── Generators │ │ │ ├── Generator.cs │ │ │ ├── GeneratorCSharp.cs │ │ │ ├── GeneratorIL.cs │ │ │ └── NodeTypeAttribute.cs │ │ ├── Nodes │ │ │ ├── AstNode.cs │ │ │ ├── AstNodeCase.cs │ │ │ ├── AstNodeExpr.cs │ │ │ ├── AstNodeExprArgument.cs │ │ │ ├── AstNodeExprArrayAccess.cs │ │ │ ├── AstNodeExprBinop.cs │ │ │ ├── AstNodeExprCall.cs │ │ │ ├── AstNodeExprCallInstance.cs │ │ │ ├── AstNodeExprCallStatic.cs │ │ │ ├── AstNodeExprCallTailCall.cs │ │ │ ├── AstNodeExprCast.cs │ │ │ ├── AstNodeExprFieldAccess.cs │ │ │ ├── AstNodeExprGetAddress.cs │ │ │ ├── AstNodeExprImm.cs │ │ │ ├── AstNodeExprIndirect.cs │ │ │ ├── AstNodeExprLValue.cs │ │ │ ├── AstNodeExprLocal.cs │ │ │ ├── AstNodeExprNew.cs │ │ │ ├── AstNodeExprNewArray.cs │ │ │ ├── AstNodeExprPropertyAccess.cs │ │ │ ├── AstNodeExprSetGetLValue.cs │ │ │ ├── AstNodeExprTerop.cs │ │ │ ├── AstNodeExprUnop.cs │ │ │ ├── AstNodeStm.cs │ │ │ ├── AstNodeStmAssign.cs │ │ │ ├── AstNodeStmComment.cs │ │ │ ├── AstNodeStmContainer.cs │ │ │ ├── AstNodeStmEmpty.cs │ │ │ ├── AstNodeStmExpr.cs │ │ │ ├── AstNodeStmGoto.cs │ │ │ ├── AstNodeStmIfElse.cs │ │ │ ├── AstNodeStmLabel.cs │ │ │ ├── AstNodeStmReturn.cs │ │ │ ├── AstNodeStmSwitch.cs │ │ │ └── AstNodeStmThrow.cs │ │ ├── Optimizers │ │ │ └── AstOptimizer.cs │ │ ├── Serializers │ │ │ └── AstSerializer.cs │ │ └── Utils │ │ │ ├── AstStringUtils.cs │ │ │ └── IndentedStringBuilder.cs │ └── Utils │ │ ├── ILFieldInfo.cs │ │ ├── ILInstanceHolder.cs │ │ ├── ILInstanceHolderPool.cs │ │ ├── ILInstanceHolderPoolItem.cs │ │ └── MethodCreator.cs │ ├── SpanExt.cs │ ├── Threading │ ├── HybridEvent.cs │ ├── HybridThread.cs │ ├── HybridThreadManager.cs │ └── Synchronization │ │ ├── MessagePipe.cs │ │ ├── PspAutoResetEvent.cs │ │ ├── PspManualResetEvent.cs │ │ ├── PspResetEvent.cs │ │ ├── PspWaitEvent.cs │ │ └── WaitableStateMachine.cs │ ├── TimeExt.cs │ ├── Translations.cs │ ├── Utils │ ├── ColorFormatExtensions.cs │ ├── PixelFormatDecoder.cs │ └── PspBitmap.cs │ ├── Vector4Ext.cs │ ├── VectorExt.cs │ └── Vfs │ ├── DirectoryEnumerator.cs │ ├── Emulator │ └── HleIoDriverEmulator.cs │ ├── FileHandle.cs │ ├── HleIoDriverExtensions.cs │ ├── HleIoDriverMountable.cs │ ├── HleIoDrvFileArgExtensions.cs │ ├── HleOutputHandler.cs │ ├── IHleIoDriver.cs │ ├── IHleIoDriverExtensions.cs │ ├── Iso │ ├── DisposableDummy.cs │ └── HleIoDriverIso.cs │ ├── Local │ └── HleIoDriverLocalFileSystem.cs │ ├── MemoryStick │ ├── HleIoDriverMemoryStick.cs │ └── IMemoryStickEventHandler.cs │ ├── ProxyHleIoDriver.cs │ ├── ReadonlyHleIoDriver.cs │ ├── SeekAnchor.cs │ └── Zip │ └── HleIoDriverZip.cs ├── README.markdown ├── Sandbox ├── 2dimagefilter - A collection of image filters, some especially suited to scale-up low res computer graphics. - Google Project Hosting.url ├── Filthy Pants- A Computer Blog- xBR vs HQx Interpolation Filter Comparison.url ├── MaiAT3PlusDecoder │ ├── COPYING.LGPLv2.1 │ ├── LICENSE │ ├── MiniPlayer │ │ ├── MaiWaveOut.cpp │ │ ├── MaiWaveOut.h │ │ ├── Makefile │ │ └── MiniPlayer.cpp │ ├── MiniPlayer_android │ │ ├── MaiWaveOut.cpp │ │ ├── MaiWaveOut.h │ │ ├── Makefile │ │ └── MiniPlayer.cpp │ ├── README │ ├── include │ │ ├── MaiAT3PlusCoreDecoder.h │ │ ├── MaiAT3PlusFrameDecoder.h │ │ ├── Mai_Base0.h │ │ └── SUB │ │ │ ├── Heap_Alloc0.h │ │ │ ├── MaiBitReader.h │ │ │ ├── MaiBufIO.h │ │ │ ├── MaiCriticalSection.h │ │ │ ├── MaiFile.h │ │ │ ├── MaiQueue0.h │ │ │ ├── MaiString.h │ │ │ ├── MaiThread.h │ │ │ ├── Mai_All.h │ │ │ ├── Mai_Sleep.h │ │ │ ├── Mai_mem.h │ │ │ └── Unicode.h │ ├── make.bat │ ├── make_clang_llvm.php │ └── src │ │ ├── MaiAT3PlusCoreDecoder.cpp │ │ ├── MaiAT3PlusCoreDecoder_DecFunc.cpp │ │ ├── MaiAT3PlusCoreDecoder_StaticData.cpp │ │ ├── MaiAT3PlusCoreDecoder_SubFunc.cpp │ │ ├── MaiAT3PlusFrameDecoder.cpp │ │ ├── Makefile │ │ └── base │ │ ├── Heap_Alloc0.cc │ │ ├── MaiBitReader.cc │ │ ├── MaiBufIO.cc │ │ ├── MaiCriticalSection.cc │ │ ├── MaiFile.cc │ │ ├── MaiQueue0.cc │ │ ├── MaiString.cc │ │ ├── MaiThread.cc │ │ ├── Mai_Sleep.cc │ │ ├── Mai_mem.cc │ │ └── Unicode.cc ├── PspAutoTests2 │ ├── .gitignore │ ├── @common.h │ ├── @imports.S │ ├── alu.c │ ├── args.c │ ├── args.output │ ├── fpu.c │ ├── gum.c │ ├── malloc.c │ └── string.c ├── kirk-engine │ ├── Makefile │ ├── build.bat │ ├── ipl_decrypt │ │ ├── Makefile │ │ └── main.c │ ├── libkirk │ │ ├── AES.c │ │ ├── AES.h │ │ ├── Makefile │ │ ├── SHA1.c │ │ ├── SHA1.h │ │ ├── bn.c │ │ ├── ec.c │ │ ├── kirk_engine.c │ │ └── kirk_engine.h │ ├── license.txt │ ├── test_harness.bat │ └── test_harness │ │ ├── Makefile │ │ └── main.c ├── prxdecrypter │ └── src │ │ ├── ICON0.PNG │ │ ├── README.txt │ │ ├── SOURCE_CODE_README.txt │ │ ├── common.c │ │ ├── common.h │ │ ├── file.c │ │ ├── file.h │ │ ├── include │ │ ├── kubridge.h │ │ ├── libpsardumper.h │ │ ├── pspcrypt.h │ │ ├── pspdecrypt.h │ │ ├── pspinit.h │ │ ├── psploadexec_kernel.h │ │ ├── pspmodulemgr.h │ │ ├── pspmodulemgr_kernel.h │ │ ├── pspsysmem.h │ │ ├── pspsysmem_kernel.h │ │ ├── pspusbdevice.h │ │ ├── psputilsforkernel.h │ │ ├── systemctrl.h │ │ ├── systemctrl_se.h │ │ └── vshctrl.h │ │ ├── keys_144_byte.h │ │ ├── keys_16_byte.h │ │ ├── lib │ │ ├── libpspinit.a │ │ ├── libpspkdebug.a │ │ ├── libpspkubridge.a │ │ ├── libpsploadexec_kernel.a │ │ ├── libpspmesgd_driver.a │ │ ├── libpspmodulemgr_kernel.a │ │ ├── libpspmodulemgr_user.a │ │ ├── libpspnwman_driver.a │ │ ├── libpspsemaphore.a │ │ ├── libpspsysmem_kernel.a │ │ ├── libpspsysmem_user.a │ │ ├── libpspsystemctrl_kernel.a │ │ ├── libpspsystemctrl_user.a │ │ ├── libpspumd_kernel.a │ │ ├── libpspusbdevice.a │ │ ├── libpspusbdevice_driver.a │ │ ├── libpsputilsforkernel.a │ │ └── libpspvshctrl.a │ │ ├── main.c │ │ ├── make.bat │ │ ├── makefile │ │ ├── prxdecrypter_01g │ │ ├── Makefile │ │ ├── exports.c │ │ ├── exports.exp │ │ ├── libprxdecrypter_01g │ │ │ ├── make.bat │ │ │ ├── makefile │ │ │ ├── pspAPI.S │ │ │ └── pspimport.S │ │ ├── libpspsemaphore.a │ │ ├── main.c │ │ ├── make.bat │ │ └── prxdecrypter_prx_01g.S │ │ ├── prxdecrypter_02g │ │ ├── Makefile │ │ ├── exports.exp │ │ ├── main.c │ │ ├── make.bat │ │ └── prxdecrypter_prx_02g.S │ │ ├── prxdecrypter_prx_01g.S │ │ └── prxdecrypter_prx_02g.S ├── pspautotests3 │ └── cpu_alu │ │ ├── Makefile │ │ └── generate.php ├── smaa-opengl │ ├── CMakeLists.txt │ ├── Licence.txt │ ├── Readme.txt │ ├── SMAA.h │ ├── main.cpp │ ├── smaa_area.raw │ ├── smaa_glsl.h │ └── smaa_search.raw ├── vfpu_encoding │ ├── .gitignore │ ├── Makefile │ └── main.c └── ~PSP.bt ├── cspspemu.bat ├── cspspemu_ryujit.bat ├── deploy.bat ├── deploy └── cspspemu │ ├── Download Microsoft .NET Framework 4.5 from Official Microsoft Download Center.url │ ├── EmuReleases.com.url │ ├── demos │ ├── .gitignore │ ├── 035_ReadUMD.pbp │ ├── 2dstudio.prx │ ├── 3dstudio.prx │ ├── Data │ │ ├── NeHe.bmp │ │ ├── Star.bmp │ │ ├── crate.bmp │ │ ├── glass.bmp │ │ ├── mud.bmp │ │ └── world.txt │ ├── HelloJpcsp.pbp │ ├── HelloWorldPSP.pbp │ ├── ObjC.elf │ ├── alsample.elf │ ├── beginobject.elf │ ├── blend.pbp │ ├── blit.elf │ ├── blit.pbp │ ├── celshading.elf │ ├── celshading.pbp │ ├── clut.pbp │ ├── compilerPerf.pbp │ ├── controller.elf │ ├── copy.pbp │ ├── counter.elf │ ├── counter.pbp │ ├── cube.pbp │ ├── cubevfpu.prx │ ├── cwd.elf │ ├── displayWait.prx │ ├── dumper.elf │ ├── dumpipl.elf │ ├── envmap.elf │ ├── envmap.pbp │ ├── fbw.prx │ ├── fileio.pbp │ ├── fileiotest.pbp │ ├── fputest.pbp │ ├── gelist.pbp │ ├── getest.pbp │ ├── idstorage.elf │ ├── integerdrawing.elf │ ├── interrupts.prx │ ├── intraFontTest.elf │ ├── iotest.pbp │ ├── lights.pbp │ ├── lines.pbp │ ├── loadmodule.elf │ ├── logic.pbp │ ├── malloctest.pbp │ ├── memory.pbp │ ├── memory64mb.pbp │ ├── messagebox.elf │ ├── minifire.elf │ ├── minifire.pbp │ ├── morph.elf │ ├── morph.pbp │ ├── morphskin.elf │ ├── morphskin.pbp │ ├── mp3sample.elf │ ├── mscm.elf │ ├── mstest.pbp │ ├── mstick.pbp │ ├── mytest.elf │ ├── mytest.pbp │ ├── nehetutorial02.pbp │ ├── nehetutorial03.pbp │ ├── nehetutorial04.pbp │ ├── nehetutorial05.pbp │ ├── nehetutorial06.pbp │ ├── nehetutorial07.pbp │ ├── nehetutorial08.pbp │ ├── nehetutorial09.pbp │ ├── nehetutorial10.pbp │ ├── net.pbp │ ├── netsample.elf │ ├── ortho.pbp │ ├── polyphonic.elf │ ├── power.pbp │ ├── powersample.elf │ ├── pspctrl.PBP │ ├── reflection.pbp │ ├── regsample.elf │ ├── regsh.elf │ ├── rendertarget.elf │ ├── resolver.elf │ ├── rtctest.pbp │ ├── sample.elf │ ├── save_decrypt.elf │ ├── save_encrypt.elf │ ├── savedata.elf │ ├── shadowprojection.elf │ ├── signals.elf │ ├── skinning.pbp │ ├── sound.prx │ ├── speed.elf │ ├── spharm.elf │ ├── splinesurface.elf │ ├── splinesurface.pbp │ ├── sprite.pbp │ ├── sysevent.elf │ ├── systimer.elf │ ├── taskScheduler.prx │ ├── tbw.prx │ ├── text.elf │ ├── text.pbp │ ├── threadstatus.elf │ ├── threadstatus.pbp │ ├── threadstatus.prx │ ├── timing.elf │ ├── umdcallback.prx │ ├── usbstorage.elf │ ├── vertex.pbp │ ├── vfputest.pbp │ ├── wlansample.elf │ ├── wlanscan.elf │ └── zbufferfog.elf │ └── flash0 │ └── .gitignore ├── merge_release.bat ├── mono_cspspemu.bat ├── nunit.args ├── psp.ico ├── pspautotests ├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── build.sh ├── common │ ├── Makefile │ ├── common.c │ ├── common.h │ ├── common.mk │ ├── sysmem-imports.S │ ├── sysmem-imports.h │ ├── test_common.bat │ ├── test_common.c │ ├── vram.c │ └── vram.h ├── demos │ ├── Data │ │ ├── NeHe.bmp │ │ ├── Star.bmp │ │ ├── crate.bmp │ │ ├── glass.bmp │ │ ├── mud.bmp │ │ └── world.txt │ ├── controller.sfo │ └── nehe │ │ ├── 10 │ │ ├── Data │ │ │ ├── mud.bmp │ │ │ └── world.txt │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 01 │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 02 │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 03 │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 04 │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 05 │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 06 │ │ ├── Data │ │ │ └── NeHe.bmp │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 07 │ │ ├── Data │ │ │ └── crate.bmp │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 08 │ │ ├── Data │ │ │ └── glass.bmp │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── 09 │ │ ├── Data │ │ │ └── Star.bmp │ │ ├── Makefile │ │ ├── copy.sh │ │ ├── main.c │ │ └── psp-setup.c │ │ ├── Data │ │ ├── NeHe.bmp │ │ ├── Star.bmp │ │ ├── crate.bmp │ │ ├── glass.bmp │ │ ├── mud.bmp │ │ └── world.txt │ │ ├── Install toolchain and pspgl.txt │ │ ├── ReadMe.txt │ │ └── glut.c ├── demos_ex │ ├── prepare.bat │ └── sdl │ │ ├── build.bat │ │ ├── main.c │ │ └── makefile ├── gentest.py ├── tests │ ├── audio │ │ ├── atrac │ │ │ ├── Makefile │ │ │ ├── atrac-imports.S │ │ │ ├── atrac.h │ │ │ ├── atractest.c │ │ │ ├── atractest.compile │ │ │ ├── atractest.expected │ │ │ ├── decode.cpp │ │ │ ├── decode.expected │ │ │ ├── ids.c │ │ │ ├── ids.expected │ │ │ ├── resetting.cpp │ │ │ ├── resetting.expected │ │ │ ├── sample.at3 │ │ │ ├── setdata.cpp │ │ │ ├── setdata.expected │ │ │ ├── shared.cpp │ │ │ └── shared.h │ │ ├── mp3 │ │ │ ├── Makefile │ │ │ ├── mp3test.c │ │ │ ├── mp3test.compile │ │ │ ├── mp3test.expected │ │ │ └── sample.mp3 │ │ ├── sascore │ │ │ ├── Makefile │ │ │ ├── sascore-imports.S │ │ │ ├── sascore.c │ │ │ ├── sascore.expected │ │ │ ├── sascore.h │ │ │ └── test.vag │ │ └── sceaudio │ │ │ ├── Makefile │ │ │ ├── audio-imports.S │ │ │ ├── datalen.c │ │ │ ├── datalen.expected │ │ │ ├── output.c │ │ │ ├── output.expected │ │ │ ├── reserve.c │ │ │ ├── reserve.expected │ │ │ └── shared.h │ ├── build.bat │ ├── build.php │ ├── build.sh │ ├── build.txt │ ├── build_utils.php │ ├── clean_all.bat │ ├── cpu │ │ ├── cpu_alu │ │ │ ├── Makefile │ │ │ ├── cpu_alu.c │ │ │ ├── cpu_alu.expected │ │ │ └── cpu_alu.prx │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── fpu.c │ │ │ ├── fpu.expected │ │ │ └── fpu.prx │ │ ├── icache │ │ │ ├── Makefile │ │ │ ├── icache.c │ │ │ ├── icache.compile │ │ │ └── icache.expected │ │ ├── lsu │ │ │ ├── Makefile │ │ │ ├── lsu.c │ │ │ └── lsu.expected │ │ └── vfpu │ │ │ ├── Makefile │ │ │ ├── colors.c │ │ │ ├── colors.expected │ │ │ ├── colors_asm.S │ │ │ ├── convert.c │ │ │ ├── convert.expected │ │ │ ├── convert_asm.S │ │ │ ├── gum.c │ │ │ ├── gum.expected │ │ │ ├── matrix.c │ │ │ ├── matrix.expected │ │ │ ├── prefixes.c │ │ │ ├── prefixes.expected │ │ │ ├── vector.c │ │ │ ├── vector.expected │ │ │ ├── vfpu_common.c │ │ │ └── vfpu_common.h │ ├── ctrl │ │ ├── Makefile │ │ ├── ctrl.c │ │ ├── ctrl.expected │ │ ├── idle │ │ │ ├── Makefile │ │ │ ├── idle.c │ │ │ └── idle.expected │ │ ├── sampling │ │ │ ├── Makefile │ │ │ ├── sampling.c │ │ │ └── sampling.expected │ │ └── sampling2 │ │ │ ├── Makefile │ │ │ ├── sampling2.c │ │ │ └── sampling2.expected │ ├── display │ │ ├── Makefile │ │ ├── display-imports.S │ │ ├── display.c │ │ ├── display.expected │ │ ├── hcount.cpp │ │ ├── hcount.expected │ │ ├── vblankmulti.c │ │ └── vblankmulti.expected │ ├── dmac │ │ ├── Makefile │ │ ├── dmac-imports.S │ │ ├── dmactest.c │ │ ├── dmactest.compile │ │ └── dmactest.expected │ ├── font │ │ ├── Makefile │ │ ├── fonttest.c │ │ ├── fonttest.compile │ │ ├── fonttest.expected │ │ ├── libfont-imports.S │ │ ├── libfont.h │ │ └── ltn0.pgf │ ├── gpu │ │ ├── callbacks │ │ │ ├── Makefile │ │ │ ├── ge_callbacks.c │ │ │ └── ge_callbacks.expected │ │ ├── commands │ │ │ ├── Makefile │ │ │ ├── basic.c │ │ │ ├── basic.expected │ │ │ ├── basic.expected.bmp │ │ │ ├── commands.h │ │ │ ├── material.c │ │ │ ├── material.expected │ │ │ └── material.expected.bmp │ │ ├── complex │ │ │ ├── Makefile │ │ │ ├── complex.c │ │ │ ├── complex.compile │ │ │ ├── complex.expected │ │ │ ├── complex.expected.bmp │ │ │ └── test.tga │ │ ├── displaylist │ │ │ ├── Makefile │ │ │ ├── state.c │ │ │ └── state.expected │ │ ├── ge │ │ │ ├── Makefile │ │ │ ├── break.cpp │ │ │ ├── break.expected │ │ │ ├── context.cpp │ │ │ ├── context.expected │ │ │ ├── edram.cpp │ │ │ ├── edram.expected │ │ │ ├── ge-imports.S │ │ │ ├── get.cpp │ │ │ ├── get.expected │ │ │ ├── queue.cpp │ │ │ └── queue.expected │ │ ├── reflection │ │ │ ├── Makefile │ │ │ ├── reflection.c │ │ │ ├── reflection.compile │ │ │ ├── reflection.expected │ │ │ ├── reflection.expected.bmp │ │ │ └── reflection.reference.0.png │ │ ├── rendertarget │ │ │ ├── Makefile │ │ │ ├── rendertarget.c │ │ │ ├── rendertarget.compile │ │ │ ├── rendertarget.expected │ │ │ └── rendertarget.expected.bmp │ │ ├── signals │ │ │ ├── Makefile │ │ │ ├── jumps.c │ │ │ ├── jumps.expected │ │ │ ├── simple.c │ │ │ └── simple.expected │ │ ├── simple │ │ │ ├── Makefile │ │ │ ├── simple.c │ │ │ └── simple.expected │ │ └── triangle │ │ │ ├── Makefile │ │ │ ├── triangle.c │ │ │ ├── triangle.compile │ │ │ ├── triangle.expected │ │ │ └── triangle.reference.0.png │ ├── hash │ │ ├── Makefile │ │ ├── hash.c │ │ └── hash.expected │ ├── hle │ │ ├── Makefile │ │ ├── check_not_used_uids.c │ │ └── check_not_used_uids.expected │ ├── intr │ │ ├── Makefile │ │ ├── intr.c │ │ ├── intr.expected │ │ ├── vblank │ │ │ ├── Makefile │ │ │ ├── vblank.c │ │ │ └── vblank.expected │ │ ├── waits.cpp │ │ └── waits.expected │ ├── io │ │ ├── cwd │ │ │ ├── Makefile │ │ │ ├── cwd.c │ │ │ └── cwd.expected │ │ ├── directory │ │ │ ├── Makefile │ │ │ ├── directory.c │ │ │ ├── directory.expected │ │ │ └── folder │ │ │ │ ├── 1.txt │ │ │ │ ├── 2.txt │ │ │ │ ├── subfolder │ │ │ │ └── subtext.txt │ │ │ │ └── test.txt │ │ ├── file │ │ │ ├── Makefile │ │ │ ├── file.c │ │ │ ├── file.expected │ │ │ ├── rename.c │ │ │ └── rename.expected │ │ ├── io │ │ │ ├── Makefile │ │ │ ├── io.c │ │ │ └── io.expected │ │ └── iodrv │ │ │ ├── Makefile │ │ │ ├── iodrv.c │ │ │ ├── iodrv.compile │ │ │ └── iodrv.expected │ ├── kirk │ │ ├── kirk-imports.S │ │ ├── kirk.c │ │ ├── kirk.compile │ │ ├── kirk.expected │ │ └── kirk_engine.h │ ├── libs │ │ └── xlib │ │ │ ├── xbuffer.c │ │ │ ├── xbuffer.h │ │ │ ├── xconfig.h │ │ │ ├── xctrl.c │ │ │ ├── xctrl.h │ │ │ ├── xgraphics.c │ │ │ ├── xgraphics.h │ │ │ ├── xheightmap.c │ │ │ ├── xheightmap.h │ │ │ ├── xini.c │ │ │ ├── xini.h │ │ │ ├── xlib.c │ │ │ ├── xlib.h │ │ │ ├── xlog.c │ │ │ ├── xlog.h │ │ │ ├── xmath.c │ │ │ ├── xmath.h │ │ │ ├── xmem.c │ │ │ ├── xmem.h │ │ │ ├── xobj.c │ │ │ ├── xobj.h │ │ │ ├── xparticle.c │ │ │ ├── xparticle.h │ │ │ ├── xsound.c │ │ │ ├── xsound.h │ │ │ ├── xtext.c │ │ │ ├── xtext.h │ │ │ ├── xtexture.c │ │ │ ├── xtexture.h │ │ │ ├── xtime.c │ │ │ └── xtime.h │ ├── loader │ │ └── bss │ │ │ ├── .bss - Wikipedia, the free encyclopedia.url │ │ │ ├── Makefile │ │ │ ├── bss.c │ │ │ └── bss.expected │ ├── malloc │ │ ├── Makefile │ │ ├── malloc.c │ │ └── malloc.expected │ ├── me │ │ ├── Makefile │ │ ├── main.c │ │ └── me.S │ ├── misc │ │ ├── Makefile │ │ ├── dcache.c │ │ ├── dcache.expected │ │ ├── kernel-imports.S │ │ ├── libc.c │ │ ├── libc.expected │ │ ├── testgp.c │ │ └── testgp.expected │ ├── modules │ │ ├── MyLib.S │ │ ├── loadexec-imports.S │ │ ├── loadexec │ │ │ ├── Makefile │ │ │ ├── loader.c │ │ │ ├── loader.expected │ │ │ ├── loader.mak │ │ │ ├── simple.c │ │ │ └── simple.mak │ │ ├── mymodule.c │ │ ├── mymodule_exports.c │ │ ├── mymodule_exports.exp │ │ ├── prxloader.c │ │ └── prxloader.expected_ │ ├── mstick │ │ ├── Makefile │ │ ├── mstick.c │ │ └── mstick.expected │ ├── net │ │ ├── http │ │ │ ├── Makefile │ │ │ ├── http.cpp │ │ │ └── http.expected │ │ └── primary │ │ │ ├── Makefile │ │ │ ├── ether.cpp │ │ │ └── ether.expected │ ├── not_working_on_real_psp.txt │ ├── power │ │ ├── Makefile │ │ ├── cpu.c │ │ ├── cpu.expected │ │ ├── freq.c │ │ ├── freq.expected │ │ ├── power-imports.S │ │ ├── power.c │ │ ├── power.expected │ │ └── volatile │ │ │ ├── Makefile │ │ │ ├── lock.cpp │ │ │ ├── lock.expected │ │ │ ├── trylock.cpp │ │ │ ├── trylock.expected │ │ │ ├── unlock.cpp │ │ │ └── unlock.expected │ ├── rtc │ │ ├── Makefile │ │ ├── arithmetic.c │ │ ├── arithmetic.expected │ │ ├── convert.c │ │ ├── convert.expected │ │ ├── format.c │ │ ├── lookup.c │ │ ├── lookup.expected │ │ ├── rtc-imports.S │ │ ├── rtc.c │ │ ├── rtc.expected │ │ └── rtc_common.h │ ├── string │ │ ├── Makefile │ │ ├── string.c │ │ └── string.expected │ ├── sysmem │ │ ├── Makefile │ │ ├── freesize.c │ │ ├── freesize.expected │ │ ├── partition.c │ │ ├── partition.expected │ │ ├── sysmem.c │ │ └── sysmem.expected │ ├── threads │ │ ├── alarm │ │ │ ├── Makefile │ │ │ ├── alarm.c │ │ │ ├── alarm.expected │ │ │ ├── cancel │ │ │ │ ├── Makefile │ │ │ │ ├── cancel.c │ │ │ │ └── cancel.expected │ │ │ ├── refer │ │ │ │ ├── Makefile │ │ │ │ ├── refer.c │ │ │ │ └── refer.expected │ │ │ ├── set │ │ │ │ ├── Makefile │ │ │ │ ├── set.c │ │ │ │ └── set.expected │ │ │ ├── sub_shared.h │ │ │ └── sub_shared.mak │ │ ├── callbacks │ │ │ ├── Makefile │ │ │ ├── callbacks.c │ │ │ ├── callbacks.expected │ │ │ ├── cancel.cpp │ │ │ ├── cancel.expected │ │ │ ├── check.cpp │ │ │ ├── check.expected │ │ │ ├── count.cpp │ │ │ ├── count.expected │ │ │ ├── create.cpp │ │ │ ├── create.expected │ │ │ ├── delete.cpp │ │ │ ├── delete.expected │ │ │ ├── exit.cpp │ │ │ ├── exit.expected │ │ │ ├── notify.cpp │ │ │ ├── notify.expected │ │ │ ├── refer.cpp │ │ │ ├── refer.expected │ │ │ └── shared.h │ │ ├── events │ │ │ ├── Makefile │ │ │ ├── cancel │ │ │ │ ├── Makefile │ │ │ │ ├── cancel.c │ │ │ │ └── cancel.expected │ │ │ ├── clear │ │ │ │ ├── Makefile │ │ │ │ ├── clear.c │ │ │ │ └── clear.expected │ │ │ ├── create │ │ │ │ ├── Makefile │ │ │ │ ├── create.c │ │ │ │ └── create.expected │ │ │ ├── delete │ │ │ │ ├── Makefile │ │ │ │ ├── delete.c │ │ │ │ └── delete.expected │ │ │ ├── events.c │ │ │ ├── events.expected │ │ │ ├── poll │ │ │ │ ├── Makefile │ │ │ │ ├── poll.c │ │ │ │ └── poll.expected │ │ │ ├── refer │ │ │ │ ├── Makefile │ │ │ │ ├── refer.c │ │ │ │ └── refer.expected │ │ │ ├── set │ │ │ │ ├── Makefile │ │ │ │ ├── set.c │ │ │ │ └── set.expected │ │ │ ├── sub_shared.h │ │ │ ├── sub_shared.mak │ │ │ └── wait │ │ │ │ ├── Makefile │ │ │ │ ├── wait.c │ │ │ │ └── wait.expected │ │ ├── fpl │ │ │ ├── Makefile │ │ │ ├── allocate.cpp │ │ │ ├── allocate.expected │ │ │ ├── cancel.cpp │ │ │ ├── cancel.expected │ │ │ ├── create.cpp │ │ │ ├── create.expected │ │ │ ├── delete.cpp │ │ │ ├── delete.expected │ │ │ ├── fpl.c │ │ │ ├── fpl.expected │ │ │ ├── free.cpp │ │ │ ├── free.expected │ │ │ ├── priority.cpp │ │ │ ├── priority.expected │ │ │ ├── refer.cpp │ │ │ ├── refer.expected │ │ │ ├── shared.h │ │ │ ├── tryallocate.cpp │ │ │ └── tryallocate.expected │ │ ├── k0 │ │ │ ├── Makefile │ │ │ ├── k0.c │ │ │ └── k0.expected │ │ ├── lwmutex │ │ │ ├── Makefile │ │ │ ├── create.c │ │ │ ├── create.expected │ │ │ ├── delete.c │ │ │ ├── delete.expected │ │ │ ├── lock.c │ │ │ ├── lock.expected │ │ │ ├── lwmutex-imports.S │ │ │ ├── priority.c │ │ │ ├── priority.expected │ │ │ ├── refer.c │ │ │ ├── refer.expected │ │ │ ├── shared.h │ │ │ ├── try.c │ │ │ ├── try.expected │ │ │ ├── try600.c │ │ │ ├── try600.expected │ │ │ ├── unlock.c │ │ │ └── unlock.expected │ │ ├── mbx │ │ │ ├── Makefile │ │ │ ├── cancel │ │ │ │ ├── Makefile │ │ │ │ ├── cancel.c │ │ │ │ └── cancel.expected │ │ │ ├── create │ │ │ │ ├── Makefile │ │ │ │ ├── create.c │ │ │ │ └── create.expected │ │ │ ├── delete │ │ │ │ ├── Makefile │ │ │ │ ├── delete.c │ │ │ │ └── delete.expected │ │ │ ├── mbx.c │ │ │ ├── mbx.expected │ │ │ ├── poll │ │ │ │ ├── Makefile │ │ │ │ ├── poll.c │ │ │ │ └── poll.expected │ │ │ ├── priority │ │ │ │ ├── Makefile │ │ │ │ ├── priority.c │ │ │ │ └── priority.expected │ │ │ ├── receive │ │ │ │ ├── Makefile │ │ │ │ ├── receive.c │ │ │ │ └── receive.expected │ │ │ ├── refer │ │ │ │ ├── Makefile │ │ │ │ ├── refer.c │ │ │ │ └── refer.expected │ │ │ ├── send │ │ │ │ ├── Makefile │ │ │ │ ├── send.c │ │ │ │ └── send.expected │ │ │ ├── sub_shared.h │ │ │ └── sub_shared.mak │ │ ├── msgpipe │ │ │ ├── Makefile │ │ │ ├── cancel.cpp │ │ │ ├── cancel.expected │ │ │ ├── create.cpp │ │ │ ├── create.expected │ │ │ ├── data.cpp │ │ │ ├── data.expected │ │ │ ├── delete.cpp │ │ │ ├── delete.expected │ │ │ ├── msgpipe.c │ │ │ ├── msgpipe.expected │ │ │ ├── receive.cpp │ │ │ ├── receive.expected │ │ │ ├── refer.cpp │ │ │ ├── refer.expected │ │ │ ├── send.cpp │ │ │ ├── send.expected │ │ │ ├── shared.h │ │ │ ├── tryreceive.cpp │ │ │ ├── tryreceive.expected │ │ │ ├── trysend.cpp │ │ │ └── trysend.expected │ │ ├── mutex │ │ │ ├── Makefile │ │ │ ├── cancel.c │ │ │ ├── cancel.expected │ │ │ ├── create.c │ │ │ ├── create.expected │ │ │ ├── delete.c │ │ │ ├── delete.expected │ │ │ ├── lock.c │ │ │ ├── lock.expected │ │ │ ├── mutex-imports.S │ │ │ ├── mutex.c │ │ │ ├── mutex.expected │ │ │ ├── priority.c │ │ │ ├── priority.expected │ │ │ ├── refer.c │ │ │ ├── refer.expected │ │ │ ├── shared.h │ │ │ ├── try.c │ │ │ ├── try.expected │ │ │ ├── unlock.c │ │ │ └── unlock.expected │ │ ├── scheduling │ │ │ ├── Makefile │ │ │ ├── dispatch.c │ │ │ ├── dispatch.expected │ │ │ ├── lwmutex-imports.S │ │ │ ├── scheduling.c │ │ │ └── scheduling.expected │ │ ├── semaphores │ │ │ ├── Makefile │ │ │ ├── cancel.c │ │ │ ├── cancel.expected │ │ │ ├── create.c │ │ │ ├── create.expected │ │ │ ├── delete.c │ │ │ ├── delete.expected │ │ │ ├── poll.c │ │ │ ├── poll.expected │ │ │ ├── priority.c │ │ │ ├── priority.expected │ │ │ ├── refer.c │ │ │ ├── refer.expected │ │ │ ├── semaphore_greater_than_zero │ │ │ │ ├── semaphore_greater_than_zero.c │ │ │ │ └── semaphore_greater_than_zero.expected │ │ │ ├── semaphores.c │ │ │ ├── semaphores.expected │ │ │ ├── shared.h │ │ │ ├── signal.c │ │ │ ├── signal.expected │ │ │ ├── wait.c │ │ │ └── wait.expected │ │ ├── threads │ │ │ ├── Makefile │ │ │ ├── change.c │ │ │ ├── change.expected │ │ │ ├── create.c │ │ │ ├── create.expected │ │ │ ├── exitstatus.c │ │ │ ├── exitstatus.expected │ │ │ ├── extend.c │ │ │ ├── extend.expected │ │ │ ├── refer.c │ │ │ ├── refer.expected │ │ │ ├── release.c │ │ │ ├── release.expected │ │ │ ├── rotate.c │ │ │ ├── rotate.expected │ │ │ ├── shared.h │ │ │ ├── stackfree.c │ │ │ ├── stackfree.expected │ │ │ ├── start.c │ │ │ ├── start.expected │ │ │ ├── suspend.c │ │ │ ├── suspend.expected │ │ │ ├── terminate.c │ │ │ ├── terminate.expected │ │ │ ├── thread-imports.S │ │ │ ├── threadend.c │ │ │ ├── threadend.expected │ │ │ ├── threads.c │ │ │ └── threads.expected │ │ ├── vpl │ │ │ ├── Makefile │ │ │ ├── allocate.c │ │ │ ├── allocate.expected │ │ │ ├── cancel.c │ │ │ ├── cancel.expected │ │ │ ├── create.c │ │ │ ├── create.expected │ │ │ ├── delete.c │ │ │ ├── delete.expected │ │ │ ├── free.c │ │ │ ├── free.expected │ │ │ ├── priority.c │ │ │ ├── priority.expected │ │ │ ├── refer.c │ │ │ ├── refer.expected │ │ │ ├── shared.h │ │ │ ├── try.c │ │ │ ├── try.expected │ │ │ ├── vpl.c │ │ │ └── vpl.expected │ │ ├── vtimers │ │ │ ├── Makefile │ │ │ ├── vtimer.c │ │ │ └── vtimer.expected │ │ └── wakeup │ │ │ ├── Makefile │ │ │ ├── wakeup.c │ │ │ └── wakeup.expected │ ├── umd │ │ ├── callbacks │ │ │ ├── Makefile │ │ │ ├── umd.c │ │ │ └── umd.expected │ │ ├── io │ │ │ ├── Makefile │ │ │ ├── umd_io.c │ │ │ └── umd_io.expected │ │ ├── raw_access │ │ │ ├── Makefile │ │ │ ├── raw_access.c │ │ │ ├── raw_access.expected │ │ │ └── raw_acess.expected │ │ ├── umd.c │ │ ├── umd.expected │ │ └── wait │ │ │ ├── Makefile │ │ │ ├── wait.c │ │ │ └── wait.expected │ ├── utility │ │ ├── savedata │ │ │ ├── Makefile │ │ │ ├── autosave.c │ │ │ ├── autosave.expected │ │ │ ├── filelist.c │ │ │ ├── filelist.expected │ │ │ ├── getsize.c │ │ │ ├── getsize.expected │ │ │ ├── idlist.c │ │ │ ├── idlist.expected │ │ │ ├── makedata.c │ │ │ ├── makedata.expected │ │ │ ├── shared.c │ │ │ ├── shared.h │ │ │ ├── sizes.c │ │ │ └── sizes.expected │ │ └── systemparam │ │ │ ├── Makefile │ │ │ ├── systemparam │ │ │ ├── systemparam.c │ │ │ ├── systemparam.compile │ │ │ └── systemparam.expected │ └── video │ │ ├── mpeg │ │ ├── Makefile │ │ ├── basic.c │ │ ├── basic.expected │ │ ├── mpeg-imports.S │ │ ├── shared.c │ │ ├── shared.h │ │ └── test.pmf │ │ ├── pmf │ │ ├── Makefile │ │ ├── pmf.c │ │ ├── pmf.compile │ │ ├── pmf.expected │ │ ├── pmf_audio.h │ │ ├── pmf_decoder.h │ │ ├── pmf_reader.h │ │ ├── pmf_video.h │ │ ├── readme.txt │ │ ├── test.info │ │ └── test.pmf │ │ ├── pmf_simple │ │ ├── Makefile │ │ ├── pmf_simple.c │ │ ├── pmf_simple.compile │ │ ├── pmf_simple.expected │ │ ├── readme.txt │ │ └── test.pmf │ │ └── psmfplayer │ │ ├── Makefile │ │ ├── basic.c │ │ ├── basic.expected │ │ ├── psmf-imports.S │ │ └── test.pmf ├── utils │ └── win32 │ │ └── php.ini └── vcproj │ ├── pspautotests.sln │ ├── pspautotests.vcxproj │ ├── pspautotests.vcxproj.filters │ └── update-from-tests.php ├── update_version_current.bat ├── utils ├── 1040_psphacking.odp ├── 7z │ ├── 7-zip.chm │ ├── 7z.dll │ └── 7z.exe ├── NPSPTD_01.txt ├── common.php ├── deploy.php ├── git_count_revision.bat ├── git_count_revision.php ├── ilmerge │ ├── Download- ILMerge - Microsoft Download Center - Download Details.url │ ├── ILMerge License.rtf │ ├── ILMerge.doc │ └── ILMerge.exe ├── php │ ├── Download Visual C++ Redistributable for Visual Studio 2012 Update 3 from Official Microsoft Download Center.url │ ├── php.exe │ ├── php.ini │ └── php5ts.dll └── update_version_current.php └── version_last.txt /.github/workflows/dotnetcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/.github/workflows/dotnetcore.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/.gitignore -------------------------------------------------------------------------------- /CSPspEmu.Benchmark/.gitignore: -------------------------------------------------------------------------------- 1 | /BenchmarkDotNet.Artifacts 2 | /bin 3 | /obj -------------------------------------------------------------------------------- /CSPspEmu.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Benchmark/Program.cs -------------------------------------------------------------------------------- /CSPspEmu.Benchmark/RasterizerBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Benchmark/RasterizerBenchmark.cs -------------------------------------------------------------------------------- /CSPspEmu.Frontend.HelloWorld/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CSPspEmu.Frontend.HelloWorld/OSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.HelloWorld/OSX.cs -------------------------------------------------------------------------------- /CSPspEmu.Frontend.HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.HelloWorld/Program.cs -------------------------------------------------------------------------------- /CSPspEmu.Frontend.HelloWorld/minifire.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.HelloWorld/minifire.pbp -------------------------------------------------------------------------------- /CSPspEmu.Frontend.OpenTK/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CSPspEmu.Frontend.OpenTK/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.OpenTK/Program.cs -------------------------------------------------------------------------------- /CSPspEmu.Frontend.SDL/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CSPspEmu.Frontend.SDL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.SDL/Program.cs -------------------------------------------------------------------------------- /CSPspEmu.Frontend.SDL/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.SDL/SDL2.dll -------------------------------------------------------------------------------- /CSPspEmu.Frontend.SDL/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.SDL/icon0.png -------------------------------------------------------------------------------- /CSPspEmu.Frontend.SDL/minifire.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.SDL/minifire.pbp -------------------------------------------------------------------------------- /CSPspEmu.Frontend.WinForms/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CSPspEmu.Frontend.WinForms/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.WinForms/Class1.cs -------------------------------------------------------------------------------- /CSPspEmu.Frontend.WinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.WinForms/Program.cs -------------------------------------------------------------------------------- /CSPspEmu.Frontend.XamarinForms/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.XamarinForms/Info.plist -------------------------------------------------------------------------------- /CSPspEmu.Frontend.XamarinForms/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Frontend.XamarinForms/Main.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests.Integration/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CSPspEmu.Tests.Integration/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests.Integration/UnitTest1.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CSPspEmu.Tests/CSPspEmu.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/CSPspEmu.Tests.csproj -------------------------------------------------------------------------------- /CSPspEmu.Tests/CSPspEmu/Cpu/CpuUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/CSPspEmu/Cpu/CpuUtils.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/CSPspEmu/Cpu/KirkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/CSPspEmu/Cpu/KirkTest.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/CSharpUtils/HashingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/CSharpUtils/HashingTest.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/CSharpUtils/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/CSharpUtils/Paths.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/Gpu/GpuImplSoftTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/Gpu/GpuImplSoftTest.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/Gpu/RasterizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/Gpu/RasterizerTest.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/IntExtTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/IntExtTest.cs -------------------------------------------------------------------------------- /CSPspEmu.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.Tests/UnitTest1.cs -------------------------------------------------------------------------------- /CSPspEmu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu.sln -------------------------------------------------------------------------------- /CSPspEmu/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj -------------------------------------------------------------------------------- /CSPspEmu/Audio/AudioComponentThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/AudioComponentThread.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/Impl/Alsa/Alsa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/Impl/Alsa/Alsa.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/Impl/Alsa/AudioAlsaImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/Impl/Alsa/AudioAlsaImpl.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/Impl/Null/AudioImplNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/Impl/Null/AudioImplNull.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/Impl/Openal/AudioStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/Impl/Openal/AudioStream.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/PspAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/PspAudio.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/PspAudioChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/PspAudioChannel.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/PspAudioImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/PspAudioImpl.cs -------------------------------------------------------------------------------- /CSPspEmu/Audio/SoundSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Audio/SoundSample.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Assembler/MipsAssembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Assembler/MipsAssembler.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Assembler/MipsDisassembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Assembler/MipsDisassembler.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/CpuComponentThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/CpuComponentThread.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/CpuConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/CpuConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/CpuProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/CpuProcessor.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/CpuThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/CpuThreadState.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Dynarec/Ast/GeneratorILPsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Dynarec/Ast/GeneratorILPsp.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Dynarec/DynarecFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Dynarec/DynarecFunction.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Dynarec/Emitter/CpuEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Dynarec/Emitter/CpuEmitter.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Dynarec/_DynarecConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Dynarec/_DynarecConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/ICpuConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/ICpuConnector.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Instruction.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/InstructionReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/InstructionReader.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Interpreter/CpuInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Interpreter/CpuInterpreter.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/InvalidAddressException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/InvalidAddressException.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/NativeSyscallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/NativeSyscallInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/PspBreakException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/PspBreakException.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Switch/EmitLookupGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Switch/EmitLookupGenerator.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/SyscallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/SyscallInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Table/AddressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Table/AddressType.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Table/InstructionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Table/InstructionInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Table/InstructionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Table/InstructionName.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Table/InstructionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Table/InstructionNames.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Table/InstructionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Table/InstructionTable.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/Table/InstructionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/Table/InstructionType.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/VFpu/VfpuCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/VFpu/VfpuCell.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/VFpu/VfpuConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/VFpu/VfpuConstants.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/VFpu/VfpuPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/VFpu/VfpuPrefix.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/VFpu/VfpuRegisterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/VFpu/VfpuRegisterInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/VFpu/VfpuRegisterInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/VFpu/VfpuRegisterInt.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/VFpu/VfpuRegisterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/VFpu/VfpuRegisterType.cs -------------------------------------------------------------------------------- /CSPspEmu/CPU/VFpu/VfpuUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CPU/VFpu/VfpuUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/CSPspEmu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/CSPspEmu.csproj -------------------------------------------------------------------------------- /CSPspEmu/Devices/Battery/Battery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Battery/Battery.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Controller/SceCtrlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Controller/SceCtrlData.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Display/DisplayConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Display/DisplayConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Display/PspDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Display/PspDisplay.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Ipl/IplReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Ipl/IplReader.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Kirk/Kirk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Kirk/Kirk.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Memory/FastPspMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Memory/FastPspMemory.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Memory/IPspMemoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Memory/IPspMemoryInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Memory/LazyPspMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Memory/LazyPspMemory.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Memory/NormalPspMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Memory/NormalPspMemory.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Memory/PspMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Memory/PspMemory.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Memory/PspMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Memory/PspMemoryStream.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Memory/PspPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Memory/PspPointer.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Nand/NandReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Nand/NandReader.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Rtc/PspRtc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Rtc/PspRtc.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Rtc/PspTimeStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Rtc/PspTimeStruct.cs -------------------------------------------------------------------------------- /CSPspEmu/Devices/Rtc/PspVirtualTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Devices/Rtc/PspVirtualTimer.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/ApplicationPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/ApplicationPaths.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/ComponentThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/ComponentThread.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/GlobalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/GlobalConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/IInterruptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/IInterruptManager.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/IRunnableComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/IRunnableComponent.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/NewInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/NewInterop.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PluginInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PspEmulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PspEmulator.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PspHleRunningConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PspHleRunningConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PspInjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PspInjectContext.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PspPluginImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PspPluginImpl.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PspRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PspRunner.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PspStoredConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PspStoredConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/Emulator/PspUntestedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Emulator/PspUntestedAttribute.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/Formats/WavefrontObjWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/Formats/WavefrontObjWriter.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/GpuComponentThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/GpuComponentThread.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/GpuConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/GpuConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/GpuDisplayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/GpuDisplayList.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/GpuOpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/GpuOpCodes.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/GpuProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/GpuProcessor.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/GuPixelFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/GuPixelFormats.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/IGpuConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/IGpuConnector.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/PspGeCallbackData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/PspGeCallbackData.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/State/GpuRectStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/State/GpuRectStruct.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/State/GpuState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/State/GpuState.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/TextureCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/TextureCache.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/VertexInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/VertexInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/GE/VertexReading/VertexReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GE/VertexReading/VertexReader.cs -------------------------------------------------------------------------------- /CSPspEmu/GPU/GpuImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GPU/GpuImpl.cs -------------------------------------------------------------------------------- /CSPspEmu/GPU/Impl/Null/GpuImplNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GPU/Impl/Null/GpuImplNull.cs -------------------------------------------------------------------------------- /CSPspEmu/GPU/Impl/Opengl/OpenglGpuImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GPU/Impl/Opengl/OpenglGpuImpl.cs -------------------------------------------------------------------------------- /CSPspEmu/GPU/Impl/Opengl/Shaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GPU/Impl/Opengl/Shaders.cs -------------------------------------------------------------------------------- /CSPspEmu/GPU/Impl/Soft/GpuImplSoft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GPU/Impl/Soft/GpuImplSoft.cs -------------------------------------------------------------------------------- /CSPspEmu/GPU/Impl/Soft/Rasterizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GPU/Impl/Soft/Rasterizer.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/CommonGuiDisplayOpengl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/CommonGuiDisplayOpengl.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/CommonGuiInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/CommonGuiInput.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/GuiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/GuiConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/ColorAlphaLerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/ColorAlphaLerp.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/ColorAlphaThreshold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/ColorAlphaThreshold.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/ColorOnlyLerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/ColorOnlyLerp.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/ColorOnlyThreshold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/ColorOnlyThreshold.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/ColorSimpleAlphaLerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/ColorSimpleAlphaLerp.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/Engine.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/ILerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/ILerp.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/IThreshold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/IThreshold.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/HQ2X/RGBA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/HQ2X/RGBA.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/IGuiExternalInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/IGuiExternalInterface.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/SMAA/SMAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/SMAA/SMAA.h -------------------------------------------------------------------------------- /CSPspEmu/GUI/SMAA/Smaa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/SMAA/Smaa.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/SMAA/smaa_area.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/SMAA/smaa_area.raw -------------------------------------------------------------------------------- /CSPspEmu/GUI/SMAA/smaa_search.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/SMAA/smaa_search.raw -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/OutOfBoundsMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/OutOfBoundsMode.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/Shader/Shader_2xBR.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/Shader/Shader_2xBR.frag -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/Shader/XBRShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/Shader/XBRShader.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/Shader/shader1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/Shader/shader1.frag -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/Shader/shader2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/Shader/shader2.frag -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/cImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/cImage.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/cRGBCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/cRGBCache.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/libXBR2x.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/libXBR2x.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/XBR/sPixel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/XBR/sPixel.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/cheats/CWCheatEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/cheats/CWCheatEntry.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/cheats/CWCheatPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/cheats/CWCheatPlugin.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/cheats/LoadFileMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/cheats/LoadFileMessage.cs -------------------------------------------------------------------------------- /CSPspEmu/GUI/texture/TextureHookPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/GUI/texture/TextureHookPlugin.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/ArgumentReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/ArgumentReader.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/DelegateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/DelegateInfo.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleCallback.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleCallbackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleCallbackManager.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/Cso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/Cso.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/Dax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/Dax.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/Elf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/Elf.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/ElfPsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/ElfPsp.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/EncryptedPrx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/EncryptedPrx.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/Font/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/Font/BitReader.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/Font/PGF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/Font/PGF.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/FormatDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/FormatDetector.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/ICompressedIso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/ICompressedIso.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/IsoFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/IsoFile.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/IsoLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/IsoLoader.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/Pbp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/Pbp.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFormats/Psf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFormats/Psf.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleFunctionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleFunctionEntry.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleLibrary.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/CRC16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/CRC16.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/CRC32.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/FrameCrc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/FrameCrc.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/FrameUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/FrameUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/MathUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/README.txt -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/audio/Vag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/audio/Vag.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/audio/Wav.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/audio/Wav.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/AVFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/AVFrame.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/AVPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/AVPacket.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/AVPanScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/AVPanScan.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/AVPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/AVPicture.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/AVRational.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/AVRational.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/Constants.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/ImageUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/ImageUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/av/PixFmtYUV420P.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/av/PixFmtYUV420P.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/h264/decoder/MMCO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/h264/decoder/MMCO.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/h264/decoder/VLC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/h264/decoder/VLC.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/util/Arrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/util/Arrays.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/util/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/util/Buffer.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/util/Frame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/util/Frame.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/util/HashUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/util/HashUtil.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/video/IDemuxer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/video/IDemuxer.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleMedia/video/Pmf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleMedia/video/Pmf.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/HleModulesRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/HleModulesRoot.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/README.txt -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/audio/sceAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/audio/sceAudio.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/audio/sceVaudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/audio/sceVaudio.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/ctrl/sceCtrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/ctrl/sceCtrl.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/ge/sceGe_user.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/ge/sceGe_user.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/http/sceHttp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/http/sceHttp.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/http/sceSsl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/http/sceSsl.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/mpeg/Mpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/mpeg/Mpeg.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/mpeg/sceMpeg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/mpeg/sceMpeg.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/power/scePower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/power/scePower.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/pspnet/sceNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/pspnet/sceNet.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/registry/sceReg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/registry/sceReg.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleModules/rtc/sceRtc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleModules/rtc/sceRtc.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleThread.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleUidPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleUidPool.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/HleUidPoolSpecial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/HleUidPoolSpecial.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Interop/HleInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Interop/HleInterop.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Loader/ElfConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Loader/ElfConfig.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Loader/ElfLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Loader/ElfLoader.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Loader/ElfPspLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Loader/ElfPspLoader.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Managers/HleIoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Managers/HleIoManager.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Managers/HleMemoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Managers/HleMemoryManager.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Managers/HleModuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Managers/HleModuleManager.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Managers/HleThreadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Managers/HleThreadManager.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Managers/HleUidPoolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Managers/HleUidPoolManager.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/MemoryPartition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/MemoryPartition.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Modules/HleModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Modules/HleModule.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Modules/HleModuleGuest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Modules/HleModuleGuest.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Modules/HleModuleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Modules/HleModuleHost.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Modules/SceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Modules/SceModule.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/PreemptiveScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/PreemptiveScheduler.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/PspLanguages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/PspLanguages.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Types/PspThreadAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Types/PspThreadAttributes.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Types/PspThreadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Types/PspThreadStatus.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Types/PspVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Types/PspVersion.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Types/SceKernelErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Types/SceKernelErrors.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Types/SceKernelException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Types/SceKernelException.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Types/SceKernelSysClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Types/SceKernelSysClock.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/Types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/Types/Types.cs -------------------------------------------------------------------------------- /CSPspEmu/HLE/WakeUpCallbackDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/HLE/WakeUpCallbackDelegate.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/DebugPspMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/DebugPspMemory.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/Dma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/Dma.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/DmaEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/DmaEnum.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/ILleDma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/ILleDma.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/LLEState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/LLEState.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/LleGPIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/LleGPIO.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/LleKirk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/LleKirk.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/LleNAND.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/LleNAND.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/LlePspComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/LlePspComponent.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/LlePspCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/LlePspCpu.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/Program.cs -------------------------------------------------------------------------------- /CSPspEmu/LLE/TransferUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/LLE/TransferUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Resources/ResourceArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Resources/ResourceArchive.cs -------------------------------------------------------------------------------- /CSPspEmu/Resources/Translations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Resources/Translations.xml -------------------------------------------------------------------------------- /CSPspEmu/Resources/flash0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Resources/flash0.zip -------------------------------------------------------------------------------- /CSPspEmu/Resources/psp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Resources/psp.ico -------------------------------------------------------------------------------- /CSPspEmu/Utils/AudioMixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/AudioMixer.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpPlatform/AL/AL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpPlatform/AL/AL.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpPlatform/GL/GL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpPlatform/GL/GL.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpPlatform/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpPlatform/Platform.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpPlatform/SDL/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpPlatform/SDL/SDL2.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpPlatform/UI/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpPlatform/UI/Dialog.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ArrayUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/AsyncTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/AsyncTask.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/BitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/BitReader.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/BitUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/BitUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/BitWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/BitWriter.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/BitWriter2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/BitWriter2.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/BitmapUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/BitmapUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ColorFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ColorFormat.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ColorFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ColorFormats.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ColorUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ConsoleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ConsoleUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ConvertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ConvertEx.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Crc32.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Diff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Diff.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Endianness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Endianness.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/FieldMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/FieldMapping.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/FileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/FileUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Hashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Hashing.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Iterators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Iterators.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Json/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Json/JSON.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/LazyHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/LazyHolder.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Logger.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/MathFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/MathFloat.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/MathUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/NumberUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/NumberUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/PointerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/PointerUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Pool.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ProcessUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ProcessUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/RGBA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/RGBA.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/RingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/RingBuffer.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/StructUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/StructUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/ThreadUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/ThreadUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/TimeSampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/TimeSampler.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/TypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/TypeUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CSharpUtils/Wildcard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CSharpUtils/Wildcard.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/CStringFormater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/CStringFormater.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Compat/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Compat/Application.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Compat/Imaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Compat/Imaging.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Crypto/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Crypto/Crypto.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/DebugUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/DebugUtils.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/HalfFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/HalfFloat.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Hashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Hashing.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/IArgumentReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/IArgumentReader.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Imaging/Bitmap32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Imaging/Bitmap32.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Imaging/PNG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Imaging/PNG.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Injector/InjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Injector/InjectAttribute.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Injector/InjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Injector/InjectContext.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Injector/MessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Injector/MessageBus.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/IntExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/IntExt.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/MatrixExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/MatrixExt.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/MessagePipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/MessagePipe.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/OutputPixel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/OutputPixel.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/SpanExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/SpanExt.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Threading/HybridEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Threading/HybridEvent.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Threading/HybridThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Threading/HybridThread.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/TimeExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/TimeExt.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Translations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Translations.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Utils/PixelFormatDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Utils/PixelFormatDecoder.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Utils/PspBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Utils/PspBitmap.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vector4Ext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vector4Ext.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/VectorExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/VectorExt.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/DirectoryEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/DirectoryEnumerator.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/FileHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/FileHandle.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/HleIoDriverMountable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/HleIoDriverMountable.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/HleOutputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/HleOutputHandler.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/IHleIoDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/IHleIoDriver.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/Iso/DisposableDummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/Iso/DisposableDummy.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/Iso/HleIoDriverIso.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/Iso/HleIoDriverIso.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/ProxyHleIoDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/ProxyHleIoDriver.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/ReadonlyHleIoDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/ReadonlyHleIoDriver.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/SeekAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/SeekAnchor.cs -------------------------------------------------------------------------------- /CSPspEmu/Utils/Vfs/Zip/HleIoDriverZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/CSPspEmu/Utils/Vfs/Zip/HleIoDriverZip.cs -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/README.markdown -------------------------------------------------------------------------------- /Sandbox/MaiAT3PlusDecoder/COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/MaiAT3PlusDecoder/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /Sandbox/MaiAT3PlusDecoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/MaiAT3PlusDecoder/LICENSE -------------------------------------------------------------------------------- /Sandbox/MaiAT3PlusDecoder/README: -------------------------------------------------------------------------------- 1 | Just use 'make' to build. 2 | -------------------------------------------------------------------------------- /Sandbox/MaiAT3PlusDecoder/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/MaiAT3PlusDecoder/make.bat -------------------------------------------------------------------------------- /Sandbox/MaiAT3PlusDecoder/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/MaiAT3PlusDecoder/src/Makefile -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.elf -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/@common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/@common.h -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/@imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/@imports.S -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/alu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/alu.c -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/args.c -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/args.output: -------------------------------------------------------------------------------- 1 | 1 2 | 1 -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/fpu.c -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/gum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/gum.c -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/malloc.c -------------------------------------------------------------------------------- /Sandbox/PspAutoTests2/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/PspAutoTests2/string.c -------------------------------------------------------------------------------- /Sandbox/kirk-engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/Makefile -------------------------------------------------------------------------------- /Sandbox/kirk-engine/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/build.bat -------------------------------------------------------------------------------- /Sandbox/kirk-engine/ipl_decrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/ipl_decrypt/Makefile -------------------------------------------------------------------------------- /Sandbox/kirk-engine/ipl_decrypt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/ipl_decrypt/main.c -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/AES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/AES.c -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/AES.h -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/Makefile -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/SHA1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/SHA1.c -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/SHA1.h -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/bn.c -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/ec.c -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/kirk_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/kirk_engine.c -------------------------------------------------------------------------------- /Sandbox/kirk-engine/libkirk/kirk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/libkirk/kirk_engine.h -------------------------------------------------------------------------------- /Sandbox/kirk-engine/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/license.txt -------------------------------------------------------------------------------- /Sandbox/kirk-engine/test_harness.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/test_harness.bat -------------------------------------------------------------------------------- /Sandbox/kirk-engine/test_harness/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/test_harness/Makefile -------------------------------------------------------------------------------- /Sandbox/kirk-engine/test_harness/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/kirk-engine/test_harness/main.c -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/ICON0.PNG -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/README.txt -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/common.c: -------------------------------------------------------------------------------- 1 | #include "common.h" 2 | -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/common.h -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/file.c -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/file.h -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/include/pspinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/include/pspinit.h -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/keys_16_byte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/keys_16_byte.h -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/main.c -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/make.bat -------------------------------------------------------------------------------- /Sandbox/prxdecrypter/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/prxdecrypter/src/makefile -------------------------------------------------------------------------------- /Sandbox/pspautotests3/cpu_alu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/pspautotests3/cpu_alu/Makefile -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/CMakeLists.txt -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/Licence.txt -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/Readme.txt -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/SMAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/SMAA.h -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/main.cpp -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/smaa_area.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/smaa_area.raw -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/smaa_glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/smaa_glsl.h -------------------------------------------------------------------------------- /Sandbox/smaa-opengl/smaa_search.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/smaa-opengl/smaa_search.raw -------------------------------------------------------------------------------- /Sandbox/vfpu_encoding/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/vfpu_encoding/.gitignore -------------------------------------------------------------------------------- /Sandbox/vfpu_encoding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/vfpu_encoding/Makefile -------------------------------------------------------------------------------- /Sandbox/vfpu_encoding/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/vfpu_encoding/main.c -------------------------------------------------------------------------------- /Sandbox/~PSP.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/Sandbox/~PSP.bt -------------------------------------------------------------------------------- /cspspemu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/cspspemu.bat -------------------------------------------------------------------------------- /cspspemu_ryujit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/cspspemu_ryujit.bat -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy.bat -------------------------------------------------------------------------------- /deploy/cspspemu/EmuReleases.com.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.emureleases.com/ 3 | -------------------------------------------------------------------------------- /deploy/cspspemu/demos/.gitignore: -------------------------------------------------------------------------------- 1 | compilerPerf.log 2 | -------------------------------------------------------------------------------- /deploy/cspspemu/demos/035_ReadUMD.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/035_ReadUMD.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/2dstudio.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/2dstudio.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/3dstudio.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/3dstudio.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/Data/NeHe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/Data/NeHe.bmp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/Data/Star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/Data/Star.bmp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/Data/crate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/Data/crate.bmp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/Data/glass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/Data/glass.bmp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/Data/mud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/Data/mud.bmp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/Data/world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/Data/world.txt -------------------------------------------------------------------------------- /deploy/cspspemu/demos/HelloJpcsp.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/HelloJpcsp.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/HelloWorldPSP.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/HelloWorldPSP.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/ObjC.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/ObjC.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/alsample.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/alsample.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/beginobject.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/beginobject.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/blend.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/blend.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/blit.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/blit.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/blit.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/blit.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/celshading.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/celshading.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/celshading.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/celshading.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/clut.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/clut.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/compilerPerf.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/compilerPerf.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/controller.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/controller.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/copy.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/copy.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/counter.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/counter.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/counter.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/counter.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/cube.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/cube.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/cubevfpu.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/cubevfpu.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/cwd.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/cwd.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/displayWait.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/displayWait.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/dumper.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/dumper.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/dumpipl.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/dumpipl.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/envmap.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/envmap.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/envmap.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/envmap.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/fbw.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/fbw.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/fileio.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/fileio.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/fileiotest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/fileiotest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/fputest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/fputest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/gelist.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/gelist.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/getest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/getest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/idstorage.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/idstorage.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/interrupts.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/interrupts.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/intraFontTest.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/intraFontTest.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/iotest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/iotest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/lights.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/lights.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/lines.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/lines.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/loadmodule.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/loadmodule.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/logic.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/logic.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/malloctest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/malloctest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/memory.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/memory.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/memory64mb.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/memory64mb.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/messagebox.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/messagebox.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/minifire.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/minifire.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/minifire.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/minifire.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/morph.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/morph.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/morph.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/morph.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/morphskin.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/morphskin.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/morphskin.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/morphskin.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/mp3sample.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/mp3sample.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/mscm.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/mscm.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/mstest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/mstest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/mstick.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/mstick.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/mytest.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/mytest.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/mytest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/mytest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/net.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/net.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/netsample.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/netsample.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/ortho.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/ortho.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/polyphonic.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/polyphonic.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/power.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/power.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/powersample.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/powersample.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/pspctrl.PBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/pspctrl.PBP -------------------------------------------------------------------------------- /deploy/cspspemu/demos/reflection.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/reflection.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/regsample.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/regsample.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/regsh.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/regsh.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/rendertarget.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/rendertarget.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/resolver.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/resolver.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/rtctest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/rtctest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/sample.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/sample.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/save_decrypt.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/save_decrypt.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/save_encrypt.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/save_encrypt.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/savedata.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/savedata.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/signals.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/signals.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/skinning.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/skinning.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/sound.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/sound.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/speed.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/speed.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/spharm.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/spharm.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/splinesurface.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/splinesurface.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/splinesurface.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/splinesurface.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/sprite.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/sprite.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/sysevent.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/sysevent.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/systimer.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/systimer.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/taskScheduler.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/taskScheduler.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/tbw.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/tbw.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/text.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/text.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/text.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/text.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/threadstatus.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/threadstatus.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/threadstatus.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/threadstatus.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/threadstatus.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/threadstatus.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/timing.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/timing.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/umdcallback.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/umdcallback.prx -------------------------------------------------------------------------------- /deploy/cspspemu/demos/usbstorage.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/usbstorage.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/vertex.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/vertex.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/vfputest.pbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/vfputest.pbp -------------------------------------------------------------------------------- /deploy/cspspemu/demos/wlansample.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/wlansample.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/wlanscan.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/wlanscan.elf -------------------------------------------------------------------------------- /deploy/cspspemu/demos/zbufferfog.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/deploy/cspspemu/demos/zbufferfog.elf -------------------------------------------------------------------------------- /deploy/cspspemu/flash0/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /merge_release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/merge_release.bat -------------------------------------------------------------------------------- /mono_cspspemu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/mono_cspspemu.bat -------------------------------------------------------------------------------- /nunit.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/nunit.args -------------------------------------------------------------------------------- /psp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/psp.ico -------------------------------------------------------------------------------- /pspautotests/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/.gitattributes -------------------------------------------------------------------------------- /pspautotests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/.gitignore -------------------------------------------------------------------------------- /pspautotests/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/LICENSE.txt -------------------------------------------------------------------------------- /pspautotests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/README.md -------------------------------------------------------------------------------- /pspautotests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/build.sh -------------------------------------------------------------------------------- /pspautotests/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/Makefile -------------------------------------------------------------------------------- /pspautotests/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/common.c -------------------------------------------------------------------------------- /pspautotests/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/common.h -------------------------------------------------------------------------------- /pspautotests/common/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/common.mk -------------------------------------------------------------------------------- /pspautotests/common/sysmem-imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/sysmem-imports.S -------------------------------------------------------------------------------- /pspautotests/common/sysmem-imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/sysmem-imports.h -------------------------------------------------------------------------------- /pspautotests/common/test_common.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | CALL ..\tests\make_eboot test_common 3 | -------------------------------------------------------------------------------- /pspautotests/common/test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/test_common.c -------------------------------------------------------------------------------- /pspautotests/common/vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/vram.c -------------------------------------------------------------------------------- /pspautotests/common/vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/common/vram.h -------------------------------------------------------------------------------- /pspautotests/demos/Data/NeHe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/Data/NeHe.bmp -------------------------------------------------------------------------------- /pspautotests/demos/Data/Star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/Data/Star.bmp -------------------------------------------------------------------------------- /pspautotests/demos/Data/crate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/Data/crate.bmp -------------------------------------------------------------------------------- /pspautotests/demos/Data/glass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/Data/glass.bmp -------------------------------------------------------------------------------- /pspautotests/demos/Data/mud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/Data/mud.bmp -------------------------------------------------------------------------------- /pspautotests/demos/Data/world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/Data/world.txt -------------------------------------------------------------------------------- /pspautotests/demos/controller.sfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/controller.sfo -------------------------------------------------------------------------------- /pspautotests/demos/nehe/01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/01/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/01/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/01/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/01/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/01/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/01/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/01/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/02/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/02/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/02/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/02/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/02/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/02/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/02/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/02/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/03/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/03/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/03/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/03/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/03/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/03/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/03/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/03/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/04/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/04/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/04/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/04/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/04/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/04/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/04/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/04/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/05/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/05/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/05/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/05/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/05/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/05/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/05/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/06/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/06/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/06/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/06/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/06/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/06/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/06/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/06/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/07/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/07/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/07/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/07/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/07/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/07/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/07/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/07/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/08/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/08/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/08/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/08/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/08/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/08/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/08/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/08/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/09/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/09/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/09/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/09/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/09/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/09/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/09/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/09/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/10/Data/mud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/10/Data/mud.bmp -------------------------------------------------------------------------------- /pspautotests/demos/nehe/10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/10/Makefile -------------------------------------------------------------------------------- /pspautotests/demos/nehe/10/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/10/copy.sh -------------------------------------------------------------------------------- /pspautotests/demos/nehe/10/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/10/main.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/10/psp-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/10/psp-setup.c -------------------------------------------------------------------------------- /pspautotests/demos/nehe/Data/NeHe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/Data/NeHe.bmp -------------------------------------------------------------------------------- /pspautotests/demos/nehe/Data/Star.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/Data/Star.bmp -------------------------------------------------------------------------------- /pspautotests/demos/nehe/Data/crate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/Data/crate.bmp -------------------------------------------------------------------------------- /pspautotests/demos/nehe/Data/glass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/Data/glass.bmp -------------------------------------------------------------------------------- /pspautotests/demos/nehe/Data/mud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/Data/mud.bmp -------------------------------------------------------------------------------- /pspautotests/demos/nehe/Data/world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/Data/world.txt -------------------------------------------------------------------------------- /pspautotests/demos/nehe/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/ReadMe.txt -------------------------------------------------------------------------------- /pspautotests/demos/nehe/glut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos/nehe/glut.c -------------------------------------------------------------------------------- /pspautotests/demos_ex/prepare.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos_ex/prepare.bat -------------------------------------------------------------------------------- /pspautotests/demos_ex/sdl/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos_ex/sdl/build.bat -------------------------------------------------------------------------------- /pspautotests/demos_ex/sdl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos_ex/sdl/main.c -------------------------------------------------------------------------------- /pspautotests/demos_ex/sdl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/demos_ex/sdl/makefile -------------------------------------------------------------------------------- /pspautotests/gentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/gentest.py -------------------------------------------------------------------------------- /pspautotests/tests/audio/atrac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/audio/atrac/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/audio/atrac/atrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/audio/atrac/atrac.h -------------------------------------------------------------------------------- /pspautotests/tests/audio/atrac/ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/audio/atrac/ids.c -------------------------------------------------------------------------------- /pspautotests/tests/audio/atrac/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/audio/atrac/shared.h -------------------------------------------------------------------------------- /pspautotests/tests/audio/mp3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/audio/mp3/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/audio/mp3/mp3test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/audio/mp3/mp3test.c -------------------------------------------------------------------------------- /pspautotests/tests/audio/mp3/mp3test.compile: -------------------------------------------------------------------------------- 1 | EXTRA_LIBS=pspmp3 pspaudio -------------------------------------------------------------------------------- /pspautotests/tests/audio/mp3/sample.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/audio/mp3/sample.mp3 -------------------------------------------------------------------------------- /pspautotests/tests/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/build.bat -------------------------------------------------------------------------------- /pspautotests/tests/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/build.php -------------------------------------------------------------------------------- /pspautotests/tests/build.sh: -------------------------------------------------------------------------------- 1 | php build.php $@ -------------------------------------------------------------------------------- /pspautotests/tests/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/build.txt -------------------------------------------------------------------------------- /pspautotests/tests/build_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/build_utils.php -------------------------------------------------------------------------------- /pspautotests/tests/clean_all.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | del /s *.elf EBOOT.PBP PARAM.SFO -------------------------------------------------------------------------------- /pspautotests/tests/cpu/cpu_alu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/cpu_alu/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/cpu/fpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/fpu/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/cpu/fpu/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/fpu/fpu.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/fpu/fpu.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/fpu/fpu.expected -------------------------------------------------------------------------------- /pspautotests/tests/cpu/fpu/fpu.prx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/fpu/fpu.prx -------------------------------------------------------------------------------- /pspautotests/tests/cpu/icache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/icache/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/cpu/icache/icache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/icache/icache.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/icache/icache.compile: -------------------------------------------------------------------------------- 1 | EXTRA_LIBS=pspkernel -------------------------------------------------------------------------------- /pspautotests/tests/cpu/icache/icache.expected: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /pspautotests/tests/cpu/lsu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/lsu/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/cpu/lsu/lsu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/lsu/lsu.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/lsu/lsu.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/lsu/lsu.expected -------------------------------------------------------------------------------- /pspautotests/tests/cpu/vfpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/vfpu/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/cpu/vfpu/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/vfpu/colors.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/vfpu/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/vfpu/convert.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/vfpu/gum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/vfpu/gum.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/vfpu/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/vfpu/matrix.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/vfpu/prefixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/vfpu/prefixes.c -------------------------------------------------------------------------------- /pspautotests/tests/cpu/vfpu/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/cpu/vfpu/vector.c -------------------------------------------------------------------------------- /pspautotests/tests/ctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/ctrl/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/ctrl/ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/ctrl/ctrl.c -------------------------------------------------------------------------------- /pspautotests/tests/ctrl/ctrl.expected: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 1 4 | -------------------------------------------------------------------------------- /pspautotests/tests/ctrl/idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/ctrl/idle/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/ctrl/idle/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/ctrl/idle/idle.c -------------------------------------------------------------------------------- /pspautotests/tests/display/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/display/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/display/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/display/display.c -------------------------------------------------------------------------------- /pspautotests/tests/display/display.expected: -------------------------------------------------------------------------------- 1 | Started 2 | sceDisplayGetFramePerSec: 59.940060 -------------------------------------------------------------------------------- /pspautotests/tests/display/hcount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/display/hcount.cpp -------------------------------------------------------------------------------- /pspautotests/tests/dmac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/dmac/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/dmac/dmac-imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/dmac/dmac-imports.S -------------------------------------------------------------------------------- /pspautotests/tests/dmac/dmactest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/dmac/dmactest.c -------------------------------------------------------------------------------- /pspautotests/tests/dmac/dmactest.compile: -------------------------------------------------------------------------------- 1 | EXTRA_C_FILES=dmac-imports.S -------------------------------------------------------------------------------- /pspautotests/tests/font/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/font/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/font/fonttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/font/fonttest.c -------------------------------------------------------------------------------- /pspautotests/tests/font/fonttest.compile: -------------------------------------------------------------------------------- 1 | EXTRA_C_FILES=libfont-imports.S -------------------------------------------------------------------------------- /pspautotests/tests/font/libfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/font/libfont.h -------------------------------------------------------------------------------- /pspautotests/tests/font/ltn0.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/font/ltn0.pgf -------------------------------------------------------------------------------- /pspautotests/tests/gpu/commands/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/commands/basic.c -------------------------------------------------------------------------------- /pspautotests/tests/gpu/commands/basic.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pspautotests/tests/gpu/commands/material.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pspautotests/tests/gpu/complex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/complex/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/gpu/complex/complex.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pspautotests/tests/gpu/complex/test.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/complex/test.tga -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/break.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/break.cpp -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/context.cpp -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/edram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/edram.cpp -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/ge-imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/ge-imports.S -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/get.cpp -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/get.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/get.expected -------------------------------------------------------------------------------- /pspautotests/tests/gpu/ge/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/ge/queue.cpp -------------------------------------------------------------------------------- /pspautotests/tests/gpu/reflection/reflection.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pspautotests/tests/gpu/rendertarget/rendertarget.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pspautotests/tests/gpu/signals/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/signals/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/gpu/signals/jumps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/signals/jumps.c -------------------------------------------------------------------------------- /pspautotests/tests/gpu/signals/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/signals/simple.c -------------------------------------------------------------------------------- /pspautotests/tests/gpu/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/simple/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/gpu/simple/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/gpu/simple/simple.c -------------------------------------------------------------------------------- /pspautotests/tests/gpu/triangle/triangle.expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pspautotests/tests/hash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/hash/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/hash/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/hash/hash.c -------------------------------------------------------------------------------- /pspautotests/tests/hash/hash.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/hash/hash.expected -------------------------------------------------------------------------------- /pspautotests/tests/hle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/hle/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/intr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/intr/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/intr/intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/intr/intr.c -------------------------------------------------------------------------------- /pspautotests/tests/intr/intr.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/intr/intr.expected -------------------------------------------------------------------------------- /pspautotests/tests/intr/vblank/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/intr/vblank/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/intr/vblank/vblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/intr/vblank/vblank.c -------------------------------------------------------------------------------- /pspautotests/tests/intr/waits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/intr/waits.cpp -------------------------------------------------------------------------------- /pspautotests/tests/intr/waits.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/intr/waits.expected -------------------------------------------------------------------------------- /pspautotests/tests/io/cwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/cwd/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/io/cwd/cwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/cwd/cwd.c -------------------------------------------------------------------------------- /pspautotests/tests/io/cwd/cwd.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/cwd/cwd.expected -------------------------------------------------------------------------------- /pspautotests/tests/io/directory/folder/1.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /pspautotests/tests/io/directory/folder/2.txt: -------------------------------------------------------------------------------- 1 | World! -------------------------------------------------------------------------------- /pspautotests/tests/io/directory/folder/subfolder/subtext.txt: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /pspautotests/tests/io/directory/folder/test.txt: -------------------------------------------------------------------------------- 1 | This is a test. -------------------------------------------------------------------------------- /pspautotests/tests/io/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/file/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/io/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/file/file.c -------------------------------------------------------------------------------- /pspautotests/tests/io/file/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/file/rename.c -------------------------------------------------------------------------------- /pspautotests/tests/io/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/io/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/io/io/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/io/io.c -------------------------------------------------------------------------------- /pspautotests/tests/io/io/io.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/io/io.expected -------------------------------------------------------------------------------- /pspautotests/tests/io/iodrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/iodrv/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/io/iodrv/iodrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/io/iodrv/iodrv.c -------------------------------------------------------------------------------- /pspautotests/tests/io/iodrv/iodrv.compile: -------------------------------------------------------------------------------- 1 | EXTRA_LIBS=pspkernel -------------------------------------------------------------------------------- /pspautotests/tests/kirk/kirk-imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/kirk/kirk-imports.S -------------------------------------------------------------------------------- /pspautotests/tests/kirk/kirk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/kirk/kirk.c -------------------------------------------------------------------------------- /pspautotests/tests/kirk/kirk.compile: -------------------------------------------------------------------------------- 1 | EXTRA_C_FILES=kirk-imports.S -------------------------------------------------------------------------------- /pspautotests/tests/kirk/kirk.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/kirk/kirk.expected -------------------------------------------------------------------------------- /pspautotests/tests/kirk/kirk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/kirk/kirk_engine.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xbuffer.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xbuffer.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xconfig.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xctrl.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xctrl.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xini.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xini.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xlib.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xlib.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xlog.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xlog.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xmath.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xmath.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xmem.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xmem.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xobj.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xobj.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xsound.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xsound.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xtext.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xtext.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xtexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xtexture.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xtexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xtexture.h -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xtime.c -------------------------------------------------------------------------------- /pspautotests/tests/libs/xlib/xtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/libs/xlib/xtime.h -------------------------------------------------------------------------------- /pspautotests/tests/loader/bss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/loader/bss/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/loader/bss/bss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/loader/bss/bss.c -------------------------------------------------------------------------------- /pspautotests/tests/loader/bss/bss.expected: -------------------------------------------------------------------------------- 1 | KO: 0 -------------------------------------------------------------------------------- /pspautotests/tests/malloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/malloc/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/malloc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/malloc/malloc.c -------------------------------------------------------------------------------- /pspautotests/tests/me/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/me/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/me/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/me/main.c -------------------------------------------------------------------------------- /pspautotests/tests/me/me.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/me/me.S -------------------------------------------------------------------------------- /pspautotests/tests/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/misc/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/misc/dcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/misc/dcache.c -------------------------------------------------------------------------------- /pspautotests/tests/misc/dcache.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/misc/dcache.expected -------------------------------------------------------------------------------- /pspautotests/tests/misc/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/misc/libc.c -------------------------------------------------------------------------------- /pspautotests/tests/misc/libc.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/misc/libc.expected -------------------------------------------------------------------------------- /pspautotests/tests/misc/testgp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/misc/testgp.c -------------------------------------------------------------------------------- /pspautotests/tests/misc/testgp.expected: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /pspautotests/tests/modules/MyLib.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/modules/MyLib.S -------------------------------------------------------------------------------- /pspautotests/tests/modules/loadexec/loader.expected: -------------------------------------------------------------------------------- 1 | [1] 2 | Hello world! -------------------------------------------------------------------------------- /pspautotests/tests/modules/mymodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/modules/mymodule.c -------------------------------------------------------------------------------- /pspautotests/tests/modules/prxloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/modules/prxloader.c -------------------------------------------------------------------------------- /pspautotests/tests/mstick/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/mstick/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/mstick/mstick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/mstick/mstick.c -------------------------------------------------------------------------------- /pspautotests/tests/net/http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/net/http/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/net/http/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/net/http/http.cpp -------------------------------------------------------------------------------- /pspautotests/tests/net/primary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/net/primary/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/power/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/power/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/power/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/power/cpu.c -------------------------------------------------------------------------------- /pspautotests/tests/power/cpu.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/power/cpu.expected -------------------------------------------------------------------------------- /pspautotests/tests/power/freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/power/freq.c -------------------------------------------------------------------------------- /pspautotests/tests/power/freq.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/power/freq.expected -------------------------------------------------------------------------------- /pspautotests/tests/power/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/power/power.c -------------------------------------------------------------------------------- /pspautotests/tests/power/power.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/power/power.expected -------------------------------------------------------------------------------- /pspautotests/tests/rtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/rtc/arithmetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/arithmetic.c -------------------------------------------------------------------------------- /pspautotests/tests/rtc/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/convert.c -------------------------------------------------------------------------------- /pspautotests/tests/rtc/convert.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/convert.expected -------------------------------------------------------------------------------- /pspautotests/tests/rtc/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/format.c -------------------------------------------------------------------------------- /pspautotests/tests/rtc/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/lookup.c -------------------------------------------------------------------------------- /pspautotests/tests/rtc/lookup.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/lookup.expected -------------------------------------------------------------------------------- /pspautotests/tests/rtc/rtc-imports.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/rtc-imports.S -------------------------------------------------------------------------------- /pspautotests/tests/rtc/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/rtc.c -------------------------------------------------------------------------------- /pspautotests/tests/rtc/rtc.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/rtc.expected -------------------------------------------------------------------------------- /pspautotests/tests/rtc/rtc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/rtc/rtc_common.h -------------------------------------------------------------------------------- /pspautotests/tests/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/string/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/string/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/string/string.c -------------------------------------------------------------------------------- /pspautotests/tests/sysmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/sysmem/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/sysmem/freesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/sysmem/freesize.c -------------------------------------------------------------------------------- /pspautotests/tests/sysmem/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/sysmem/partition.c -------------------------------------------------------------------------------- /pspautotests/tests/sysmem/sysmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/sysmem/sysmem.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/alarm/cancel/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = cancel 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/alarm/refer/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = refer 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/alarm/set/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = set 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/cancel/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = cancel 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/clear/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = clear 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/create/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = create 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/delete/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = delete 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/poll/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = poll 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/refer/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = refer 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/set/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = set 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/events/wait/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = wait 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/fpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/fpl/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/threads/fpl/fpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/fpl/fpl.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/fpl/free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/fpl/free.cpp -------------------------------------------------------------------------------- /pspautotests/tests/threads/fpl/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/fpl/shared.h -------------------------------------------------------------------------------- /pspautotests/tests/threads/k0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/k0/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/threads/k0/k0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/k0/k0.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/mbx/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/cancel/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = cancel 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/create/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = create 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/delete/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = delete 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/mbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/mbx/mbx.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/poll/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = poll 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/priority/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = priority 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/receive/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = receive 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/refer/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = refer 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mbx/send/Makefile: -------------------------------------------------------------------------------- 1 | TARGET = send 2 | include ../sub_shared.mak 3 | -------------------------------------------------------------------------------- /pspautotests/tests/threads/mutex/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/mutex/lock.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/mutex/try.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/mutex/try.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/semaphores/semaphore_greater_than_zero/semaphore_greater_than_zero.expected: -------------------------------------------------------------------------------- 1 | sema > 0 : ok -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/cancel.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/create.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/delete.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/free.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/refer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/refer.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/shared.h -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/try.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/try.c -------------------------------------------------------------------------------- /pspautotests/tests/threads/vpl/vpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/threads/vpl/vpl.c -------------------------------------------------------------------------------- /pspautotests/tests/umd/callbacks/umd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/umd/callbacks/umd.c -------------------------------------------------------------------------------- /pspautotests/tests/umd/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/umd/io/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/umd/io/umd_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/umd/io/umd_io.c -------------------------------------------------------------------------------- /pspautotests/tests/umd/umd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/umd/umd.c -------------------------------------------------------------------------------- /pspautotests/tests/umd/umd.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/umd/umd.expected -------------------------------------------------------------------------------- /pspautotests/tests/umd/wait/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/umd/wait/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/umd/wait/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/umd/wait/wait.c -------------------------------------------------------------------------------- /pspautotests/tests/utility/systemparam/systemparam.compile: -------------------------------------------------------------------------------- 1 | EXTRA_LIBS=psputility -------------------------------------------------------------------------------- /pspautotests/tests/video/mpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/mpeg/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/video/mpeg/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/mpeg/basic.c -------------------------------------------------------------------------------- /pspautotests/tests/video/mpeg/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/mpeg/shared.c -------------------------------------------------------------------------------- /pspautotests/tests/video/mpeg/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/mpeg/shared.h -------------------------------------------------------------------------------- /pspautotests/tests/video/mpeg/test.pmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/mpeg/test.pmf -------------------------------------------------------------------------------- /pspautotests/tests/video/pmf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/pmf/Makefile -------------------------------------------------------------------------------- /pspautotests/tests/video/pmf/pmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/pmf/pmf.c -------------------------------------------------------------------------------- /pspautotests/tests/video/pmf/pmf.compile: -------------------------------------------------------------------------------- 1 | EXTRA_LIBS=pspmpeg pspaudio -------------------------------------------------------------------------------- /pspautotests/tests/video/pmf/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/pmf/readme.txt -------------------------------------------------------------------------------- /pspautotests/tests/video/pmf/test.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/pmf/test.info -------------------------------------------------------------------------------- /pspautotests/tests/video/pmf/test.pmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/tests/video/pmf/test.pmf -------------------------------------------------------------------------------- /pspautotests/tests/video/pmf_simple/pmf_simple.compile: -------------------------------------------------------------------------------- 1 | EXTRA_LIBS=pspmpeg pspaudio -------------------------------------------------------------------------------- /pspautotests/utils/win32/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/utils/win32/php.ini -------------------------------------------------------------------------------- /pspautotests/vcproj/pspautotests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/pspautotests/vcproj/pspautotests.sln -------------------------------------------------------------------------------- /update_version_current.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/update_version_current.bat -------------------------------------------------------------------------------- /utils/1040_psphacking.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/1040_psphacking.odp -------------------------------------------------------------------------------- /utils/7z/7-zip.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/7z/7-zip.chm -------------------------------------------------------------------------------- /utils/7z/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/7z/7z.dll -------------------------------------------------------------------------------- /utils/7z/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/7z/7z.exe -------------------------------------------------------------------------------- /utils/NPSPTD_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/NPSPTD_01.txt -------------------------------------------------------------------------------- /utils/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/common.php -------------------------------------------------------------------------------- /utils/deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/deploy.php -------------------------------------------------------------------------------- /utils/git_count_revision.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soywiz-archive/cspspemu/HEAD/utils/git_count_revision.bat -------------------------------------------------------------------------------- /utils/git_count_revision.php: -------------------------------------------------------------------------------- 1 |