summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | loader: Minor style fix in deconstructed_rom_directoryGravatar Rozlette2018-01-201-1/+0
|/ / /
* | | Merge pull request #117 from jroweboy/clang-formatGravatar bunnei2018-01-2043-57/+62
|\ \ \ | | | | | | | | Clang format as a build target
| * | | Format: Run the new clang format on everythingGravatar James Rowe2018-01-2043-57/+62
| | | |
* | | | Merge pull request #120 from Rozelette/masterGravatar bunnei2018-01-201-0/+3
|\ \ \ \ | | | | | | | | | | memory: Return false for large VAddr in IsValidVirtualAddress
| * | | | memory: Return false for large VAddr in IsValidVirtualAddressGravatar Rozlette2018-01-201-0/+3
| |/ / /
* | | | loader: Clean up ctors and includes.Gravatar bunnei2018-01-2010-18/+22
| | | |
* | | | loader: Add DeconstructedRomDirectory for game dumps.Gravatar bunnei2018-01-205-0/+156
| | | |
* | | | loader: Refactor to also pass filepath into IdentifyType.Gravatar bunnei2018-01-208-19/+19
| | | |
* | | | nso: Remove code specific to directory loading.Gravatar bunnei2018-01-202-17/+6
|/ / /
* | | Port citra #3352 to yuzu (#103)Gravatar River City Ransomware2018-01-193-4/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Port citra #3352 to yuzu This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic * Fixed clang-format errors * fixes more clang-format errors
* | | Added CreateSharedMemory & UNIMPLEMENTED() for non existent services. (#113)Gravatar David2018-01-193-1/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Added svcCreateSharedMemory * Services which are not implemented now throw UNIMPLEMENTED() * clang-format * changed perms to u32 * removed camelcase
* | | Fixes some cast warnings, partial port of citra #3064 (#106)Gravatar River City Ransomware2018-01-196-21/+22
| | | | | | | | | | | | | | | | | | | | | | | | * Fixes some cast warnings, partially fixes citra #3064 * Converted casts to uint32_t to u32 * Ran clang-format
* | | Merge pull request #112 from Rozelette/masterGravatar bunnei2018-01-191-0/+16
|\ \ \ | | | | | | | | ISelfController: Stub LockExit and UnlockExit
| * | | ISelfController: Stub LockExit and UnlockExitGravatar Rozlette2018-01-191-0/+16
| | | |
* | | | acc, set, applet_oe: stub various functions, add set service (#105)Gravatar goaaats2018-01-198-0/+161
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Stubs for various acc:u0 funcs needed * Stub for GetDesiredLanguage in IApplicationFunctions * Add set service + stubs needed for games * Fix formatting * Implement IProfile, IManagerForApplication, return bool in CheckAvailability, style fixes * Remove IProfile::Get(needs more research), fix IPC response sizes
* | | Merge pull request #109 from bunnei/libnx-fixesGravatar bunnei2018-01-196-1/+26
|\ \ \ | | | | | | | | Fix svcGetInfo for libnx
| * | | nvdrv: Stub SetClientPID.Gravatar bunnei2018-01-182-0/+13
| | | |
| * | | svc: Fix svcGetInfo MapRegionBaseAddr.Gravatar bunnei2018-01-183-1/+9
| | | |
| * | | svc: Add additional fields to MemoryInfo struct.Gravatar bunnei2018-01-181-0/+4
| | | |
* | | | Merge pull request #97 from bunnei/time-stubGravatar bunnei2018-01-192-4/+12
|\ \ \ \ | | | | | | | | | | time: Stub out GetTotalLocationNameCount and some cleanup.
| * | | | time: Stub out GetTotalLocationNameCount and some cleanup.Gravatar bunnei2018-01-192-4/+12
| | | | |
* | | | | time: Add new line to ends of files.Gravatar bunnei2018-01-194-4/+4
| | | | |
* | | | | applet_oe: Clang-format.Gravatar bunnei2018-01-191-2/+1
|/ / / /
* / / / Fix dispdrv typoGravatar gdkchan2018-01-181-1/+1
|/ / /
* | | Merge pull request #100 from Rozelette/masterGravatar bunnei2018-01-187-32/+113
|\ \ \ | |/ / |/| | time: Refactor time:* to use a single shared module
| * | time: Fix use of CamelCase in ToCalendarTimeWithMyRuleGravatar Rozlette2018-01-181-6/+6
| | |
| * | time: Refactor time:* to use a single shared moduleGravatar Rozlette2018-01-187-26/+107
| | |
* | | Stub PopLaunchParameter and implement Buffer C Descriptors reading on ↵Gravatar gdkchan2018-01-185-7/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hle_ipc (#96) * Stub PopLaunchParameter and implement Buffer C Descriptors reading * Address PR feedback * Ensure we push a u64 not a size_t * Fix formatting
* | | Start to implement/stub BSD:U and SFDNSRES services (#78)Gravatar flerovium^-^2018-01-187-0/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bsd: start stubbing bsd:u and sfdnsres * bsd: stubbed RegisterClient * bsd: attempt to get past socket() * bsd: fix some wrong assumptions about IPC * bsd: fix format specifiers * bsd: stubbed Connect() * bsd: stubbed SendTo() * made requested changes * sockets: respect alphabetical order at service installation * run clang-format * bsd: start stubbing bsd:u and sfdnsres * bsd: stubbed RegisterClient * bsd: attempt to get past socket() * bsd: fix some wrong assumptions about IPC * bsd: fix format specifiers * bsd: stubbed Connect() * bsd: stubbed SendTo() * made requested changes * sockets: respect alphabetical order at service installation * run clang-format * run clang-format (2)
* | | Merge pull request #95 from bunnei/lm-skip-byteGravatar bunnei2018-01-181-0/+7
|\ \ \ | |/ / |/| | lm: Minor logging fix to skip a byte.
| * | lm: Minor logging fix to skip a byte.Gravatar bunnei2018-01-181-0/+7
| | |
* | | Merge pull request #84 from lioncash/cmakeGravatar bunnei2018-01-181-170/+167
|\ \ \ | | | | | | | | CMakeLists: Derive the source directory grouping from targets themselves
| * | | CMakeLists: Derive the source directory grouping from targets themselvesGravatar Lioncash2018-01-171-170/+167
| | | | | | | | | | | | | | | | | | | | Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases.
* | | | Merge pull request #91 from lioncash/svcGravatar bunnei2018-01-181-9/+9
|\ \ \ \ | | | | | | | | | | svc: Minor clarity changes
| * | | | svc: Rename some entries to match their analogue on SwitchBrewGravatar Lioncash2018-01-171-7/+7
| | | | | | | | | | | | | | | | | | | | Makes the codebase a little more consistent with regards to available documentation. Also amends the duplicate case where there was a similar entry at 0x72 named ConnectToPort.
| * | | | svc: Add CreateJitMemory and MapJitMemory svc stringsGravatar Lioncash2018-01-171-2/+2
| |/ / / | | | | | | | | | | | | Makes the table match SwitchBrew for these entries
* | | | Merge pull request #90 from lioncash/vi-overrideGravatar bunnei2018-01-171-20/+21
|\ \ \ \ | | | | | | | | | | vi: Minor clean up/correctness changes
| * | | | vi: Make constructors explicit where applicableGravatar Lioncash2018-01-171-13/+14
| | | | | | | | | | | | | | | | | | | | Prevents implicit conversions.
| * | | | vi: Add missing override specifiersGravatar Lioncash2018-01-171-7/+7
| |/ / /
* | | | Merge pull request #89 from lioncash/vi-vectorGravatar bunnei2018-01-171-2/+3
|\ \ \ \ | |_|/ / |/| | | vi: Copy data directly into the std::vector within Parcel's ReadBlock function
| * | | vi: Copy data directly into the std::vector within Parcel's ReadBlock functionGravatar Lioncash2018-01-171-2/+3
| |/ / | | | | | | | | | | | | Previously this would unnecessarily zero-initialize the vector before copying the actual data into the vector instance.
* | | controller: Use DuplicateSession for DuplicateSessionEx.Gravatar bunnei2018-01-172-1/+8
| | |
* | | Merge pull request #80 from gdkchan/nro_fixGravatar bunnei2018-01-171-20/+9
|\ \ \ | |/ / |/| | Fix NRO loading
| * | Fix NRO loadingGravatar gdkchan2018-01-171-20/+9
| | |
* | | Merge pull request #73 from N00byKing/3093Gravatar bunnei2018-01-172-0/+2
|\ \ \ | |/ / |/| | Implement Pull #3093 from citra: Added missing headers to CMakeLists.txt and fixed includes.
| * | Update CMakeLists.txtGravatar N00byKing2018-01-171-0/+1
| | |
| * | Update title_metadata.hGravatar N00byKing2018-01-171-0/+1
| | |
* | | Merge pull request #76 from Rozelette/masterGravatar bunnei2018-01-175-85/+164
|\ \ \ | | | | | | | | TIME: consolidate time:* interfaces, stub functions and structs
| * | | TIME: consolidate time:* interfaces, stub functions and structsGravatar Rozlette2018-01-175-85/+164
| | | |
* | | | Remove relocation on NSO/NROGravatar gdkchan2018-01-173-19/+2
|/ / /