summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Support additional screen layouts.Gravatar James Rowe2016-11-052-0/+18
| | | | | Allows users to choose a single screen layout or a large screen layout. Adds a configuration option to change the prominent screen.
* Style fixGravatar mailwl2016-11-021-2/+2
|
* Rename AcConfig, change types u8 to u32Gravatar mailwl2016-11-021-21/+25
|
* AC_U: Stub functions, used if EULA agreedGravatar mailwl2016-11-022-14/+190
|
* Merge pull request #2126 from wwylele/stub-nwmGravatar bunnei2016-10-311-0/+11
|\ | | | | NWM: stub Initialize with an error
| * NWM: stub Initialize with an errorGravatar wwylele2016-10-121-0/+11
| |
* | Merge pull request #2123 from jbeich/freebsdGravatar bunnei2016-10-311-0/+8
|\ \ | | | | | | Fix build on DragonFly and FreeBSD
| * | core: some errno values are uncommon on UnixGravatar Jan Beich2016-10-271-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | src/core/hle/service/soc_u.cpp:107:6: error: 'ENODATA' was not declared in this scope {ENODATA, 43}, ^ src/core/hle/service/soc_u.cpp:117:6: error: 'ENOSR' was not declared in this scope {ENOSR, 53}, ^ src/core/hle/service/soc_u.cpp:118:6: error: 'ENOSTR' was not declared in this scope {ENOSTR, 54}, ^ src/core/hle/service/soc_u.cpp:139:6: error: 'ETIME' was not declared in this scope {ETIME, 75}, ^
* | | Small fix to let IDA see target.xmlGravatar mailwl2016-10-281-1/+1
|/ /
* | FRD: fix GetMyFriendKeyGravatar mailwl2016-10-251-1/+1
| |
* | Fix typosGravatar Ricardo de Almeida Gonzaga2016-10-205-5/+5
| |
* | Merge pull request #2024 from JamePeng/update-boss-codeGravatar bunnei2016-10-073-4/+1808
|\ \ | |/ |/| Update the stub code of BOSS
| * Update the stub code of BOSSGravatar JamePeng2016-10-023-4/+1808
| |
* | Merge pull request #1652 from wwylele/kernal-toolGravatar bunnei2016-10-047-7/+26
|\ \ | | | | | | Debugger: implement wait tree widget
| * | move ResetType to kernel.hGravatar wwylele2016-09-223-7/+6
| | |
| * | name objectsGravatar wwylele2016-09-221-0/+4
| | |
| * | implement wait tree widgetGravatar wwylele2016-09-224-0/+16
| |/
* | Merge pull request #2106 from wwylele/delete-recursiveGravatar bunnei2016-10-038-22/+93
|\ \ | | | | | | FS: implement DeleteDirectoryRecursively
| * | fs: clean up log formatGravatar wwylele2016-10-021-22/+24
| | |
| * | fs: implement DeleteDirectoryRecursivelyGravatar wwylele2016-10-028-1/+70
| |/
* | gpu: DisplayTransfer: a less amazing algorithm for flipGravatar wwylele2016-09-291-8/+11
| | | | | | | | the old implementation modifies the loop variable in the loop. Though it actually works, it is really confusing. Makes it morereadable now.
* | gpu: keep the old signal strategy for null pointerGravatar wwylele2016-09-291-4/+8
| | | | | | | | | | previous commits changes the behaviour of interrupt when meeting invalid params. Regresses to the same behaviour as before needs more hwtest
* | gpu: add validity check for TextureCopy, DisplayTransfer and FillMemoryGravatar wwylele2016-09-291-6/+88
| | | | | | | | | | prevent further operation with invalid values which may cause assertion failure or divided by zero. needs more hwtest
* | memory: fix IsValidVirtualAddress for RasterizerCachedMemoryGravatar wwylele2016-09-291-0/+3
| | | | | | | | RasterizerCachedMemory doesn't has pointer but should be considered as valid
* | gpu: move MemoryFill, TextureCopy and DisplayTransfer into functionsGravatar wwylele2016-09-291-247/+249
|/ | | | The old code indented too much to read. Split into functions and do general cleanup.
* Remove special rules for Windows.h and library includesGravatar Yuri Kunde Schlesner2016-09-211-1/+1
|
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-21106-106/+106
|
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-21146-369/+117
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-1895-451/+467
|
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-18208-10514/+10705
|
* Dyncom: Disable clang-format on the decoding table.Gravatar Emmanuel Gil Peyrot2016-09-181-0/+3
|
* arm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg.Gravatar bunnei2016-09-151-5/+12
|
* arm: ResetContext shouldn't be part of ARM_Interface.Gravatar bunnei2016-09-156-30/+17
|
* arm_dynarmic/arm_dyncom: Remove unnecessary "virtual" keyword.Gravatar bunnei2016-09-152-2/+2
|
* dyncom: Use VFP_FPSCR/VFP_FPEXC.Gravatar bunnei2016-09-151-4/+4
|
* core: Add configuration option for CPU JIT.Gravatar bunnei2016-09-152-7/+13
|
* dynarmic: Implement ARM CPU interface.Gravatar bunnei2016-09-153-0/+233
|
* Merge pull request #2032 from bunnei/qt-graphicsGravatar bunnei2016-08-313-0/+12
|\ | | | | Qt graphics configure & V-Sync option
| * system: Add a function to see if the emulator is running.Gravatar bunnei2016-08-292-0/+11
| |
| * config: Add a setting for graphics V-Sync.Gravatar bunnei2016-08-291-0/+1
| |
* | configure_audio: User-configuratble option to enable/disable audio stretchingGravatar MerryMage2016-08-312-0/+2
| |
* | Merge pull request #2023 from yuriks/autobase-bcfntGravatar bunnei2016-08-303-30/+68
|\ \ | |/ |/| Auto-detect original shared_font.bin memory base
| * Auto-detect original shared_font.bin memory baseGravatar Yuri Kunde Schlesner2016-08-273-30/+68
| | | | | | | | | | This allows a file dumped from either an o3DS or a n3DS (and potentially even an original unrebased file) to be used.
* | Merge pull request #1948 from wwylele/cro++Gravatar Yuri Kunde Schlesner2016-08-2814-99/+3041
|\ \ | | | | | | Implemented CRO
| * | LDR: Implement CROGravatar wwylele2016-08-279-99/+3013
| | |
| * | ARM: add ClearInstructionCache functionGravatar wwylele2016-08-273-0/+11
| | |
| * | Memory: add ReadCString functionGravatar wwylele2016-08-272-0/+17
| |/
* | Merge pull request #1987 from Lectem/ipcdescriptorsGravatar Yuri Kunde Schlesner2016-08-275-22/+110
|\ \ | |/ |/| fix #1942 and add a few IPC functions for descriptors
| * fix #1942 and adds a few IPC functions for descriptorsGravatar Lectem2016-08-025-22/+110
| |
* | dyncom: Read-after-write in SMLAGravatar MerryMage2016-08-221-2/+4
| | | | | | | | | | In the case when RD === RN, RD was updated before AddOverflow was called to check for an overflow, resulting in an incorrect state of the Q flag.