summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8410 from liamwhite/thread-namesGravatar Mai M2022-06-024-14/+172
|\ | | | | gdbstub: Support reading guest thread names
| * core/debugger: Support reading guest thread namesGravatar Liam2022-06-014-14/+172
| |
* | Merge pull request #8409 from liamwhite/tdesc-fixGravatar Mai M2022-06-012-10/+87
|\ \ | |/ |/| gdbstub: fix target descriptions
| * gdbstub: fix target descriptionsGravatar Liam2022-06-012-10/+87
| |
* | Merge pull request #8402 from liamwhite/better-stepGravatar Morph2022-06-0113-122/+239
|\ \ | |/ |/| core/debugger: Improved stepping mechanism and misc fixes
| * core/debugger: Improved stepping mechanism and misc fixesGravatar Liam2022-06-0113-122/+239
| |
* | Merge pull request #8404 from Morph1984/virtualGravatar liamwhite2022-06-013-2/+6
|\ \ | | | | | | core/debugger: Define defaulted virtual destructors
| * | core/debugger: Define defaulted virtual destructorsGravatar Morph2022-06-013-2/+6
| |/ | | | | | | Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions.
* / gdbstub: Explicitly cast return type to u8Gravatar Morph2022-06-011-2/+2
|/ | | | Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8.
* core/debugger: Implement new GDB stub debuggerGravatar Liam2022-06-0119-26/+1422
|
* Merge pull request #8368 from german77/seventimesGravatar bunnei2022-05-306-368/+643
|\ | | | | Service: hid: Several improvements and implementations
| * service: hid: Implement ResetIsSixAxisSensorDeviceNewlyAssignedGravatar german772022-05-275-6/+125
| | | | | | | | Needed by Nintendo Switch Sports
| * service: hid: Implement LoadSixAxisSensorCalibrationParameter and ↵Gravatar german772022-05-275-3/+136
| | | | | | | | | | | | GetSixAxisSensorIcInformation Needed by Nintendo Switch Sports
| * service: hid: Implement EnableSixAxisSensorUnalteredPassthrough and ↵Gravatar german772022-05-274-2/+88
| | | | | | | | | | | | IsSixAxisSensorUnalteredPassthroughEnabled Needed by Nintendo Switch Sports
| * service: hid: Add error handling to sixaxis functionsGravatar german772022-05-273-31/+55
| |
| * service: hid: Refractor sixaxis functionsGravatar german772022-05-272-185/+88
| |
| * service: hid: Implement MergeSingleJoyAsDualJoy according to REGravatar german772022-05-274-65/+57
| |
| * service: hid: Add error handling to setNpadAssignment and variantsGravatar german772022-05-273-23/+27
| |
| * service: hid: Quick RE fixes and commentsGravatar german772022-05-274-54/+68
| |
* | Merge pull request #8332 from Morph1984/reduce_exec_sizeGravatar bunnei2022-05-291-4/+3
|\ \ | | | | | | general: Use smaller array types where applicable
| * | time_zone_manager: Use s8 for month length tablesGravatar Morph2022-05-131-4/+3
| | | | | | | | | | | | Using this smaller type saves 512 bytes in the compiled executable.
* | | Merge pull request #8374 from german77/asnycvibrationsGravatar bunnei2022-05-281-5/+29
|\ \ \ | | | | | | | | input_common: Make vibration request async
| * | | input_common: Make vibration request asyncGravatar Narr the Reg2022-05-231-5/+29
| | |/ | |/|
* / | input_common: touch: Rewrite touch driver to support multiple touch pointsGravatar german772022-05-233-5/+20
|/ /
* / general: Avoid ambiguous format_to compilation errorsGravatar Lioncash2022-05-141-1/+1
|/ | | | | | | Ensures that we're using the fmt version of format_to. These are also the only three outliers. All of the other formatters we have are properly qualified.
* service: hid: Fix motion refresh rateGravatar Narr the Reg2022-05-062-2/+6
|
* service: hid: Disable correctly motion inputGravatar german772022-05-061-50/+41
|
* hle/result: Update std::expected replacement messageGravatar Morph2022-05-031-1/+1
| | | | std::expected is included in C++23
* hle/result: Add ResultRange overload in ResultValGravatar Morph2022-05-031-1/+3
| | | | Also marks the implicit conversion operator as constexpr instead of consteval as the constructor is not constant evaluated.
* Merge pull request #8272 from german77/stick_rangeGravatar bunnei2022-05-031-2/+2
|\ | | | | yuzu: config: Improve analog stick mapping
| * yuzu: Config allow to delete single axis directions when buttons are mapped ↵Gravatar Narr the Reg2022-04-261-2/+2
| | | | | | | | to a stick
* | hle/result: Implement ResultRangeGravatar Morph2022-05-021-0/+42
| | | | | | | | | | | | A ResultRange defines an inclusive range of error descriptions within an error module. This can be used to check whether the description of a given ResultCode falls within the range. The conversion function returns a ResultCode with its description set to description_start.
* | Merge pull request #8274 from german77/firmwareGravatar Morph2022-04-292-1/+21
|\ \ | | | | | | service: hid: Stub IsFirmwareUpdateNeededForNotification
| * | service: hid: Stub IsFirmwareUpdateNeededForNotificationGravatar german772022-04-272-1/+21
| |/ | | | | | | Used in Fitness Boxing 2: Rhythm & Exercise (0100073011382000)
* | chore: add missing SPDX tagsGravatar Andrea Pappacoda2022-04-283-25/+8
| | | | | | | | Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52
* | Merge pull request #8229 from german77/reinterpret2Gravatar bunnei2022-04-2722-386/+429
|\ \ | |/ |/| service: hid: Access shared memory directly
| * service: hid: Ensure all structs are initializedGravatar Narr the Reg2022-04-2316-104/+105
| |
| * service: hid: Access shared memory directlyGravatar Narr the Reg2022-04-2321-305/+347
| |
* | Merge pull request #8261 from liamwhite/jit-cleanupGravatar Mai M2022-04-243-132/+225
|\ \ | | | | | | service: jit: document and clean up
| * | service: jit: document and clean upGravatar Liam2022-04-243-132/+225
| |/
* | Merge pull request #8260 from Morph1984/c4146Gravatar Mai M2022-04-241-1/+1
|\ \ | | | | | | kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF
| * | kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFFGravatar Morph2022-04-241-1/+1
| |/ | | | | | | Resolves the C4146 compiler warning on MSVC.
* / Remove unused PrepareReschedule functionGravatar Merry2022-04-247-20/+0
|/
* general: Convert source file copyright comments over to SPDXGravatar Morph2022-04-23708-2224/+1427
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* Merge pull request #7976 from BytesGalore/masterGravatar bunnei2022-04-221-1/+2
|\ | | | | loader: log the type of mismatching file-extension
| * loader: log the type of mismatching file-extensionGravatar BytesGalore2022-03-031-1/+2
| |
* | Merge pull request #8222 from german77/sixaxis_testGravatar bunnei2022-04-216-99/+363
|\ \ | | | | | | service: hid: Improve accuracy of sixaxis functions
| * | service: hid: Improve accuracy of sixaxis functionsGravatar Narr the Reg2022-04-186-99/+363
| | |
* | | core/arm: separate backtrace collectionGravatar Liam2022-04-206-90/+98
|/ /
* | Merge pull request #6558 from german77/ringcon2Gravatar Fernando S2022-04-1616-26/+1748
|\ \ | | | | | | hidbus: Implement hidbus and ringcon