Yuri Kunde Schlesner
123e3fd03d
Merge pull request #2518 from MerryMage/coproc
...
arm_dynarmic: Coprocessor support
2017-02-03 18:22:28 -08:00
MerryMage
733b01ffa3
arm_dynarmic: CP15 support
2017-02-03 17:32:47 +00:00
mailwl
ce820166b9
HLE/Applets: Stub Mint (eShop) Applet ( #2463 )
...
This allows Phoenix Wright - Dual Destinies to boot.
2017-01-31 01:16:58 -08:00
Yuri Kunde Schlesner
f69bb47213
Merge pull request #2368 from wwylele/camera-2
...
CAM: build the service framework with a dummy implementation
2017-01-29 22:16:39 -08:00
bunnei
9f5e091632
Merge pull request #2308 from mailwl/ac-i
...
Service/AC: add ac:i service
2017-01-12 10:12:46 -05:00
wwylele
ddca31fb3e
CAM: implement basic camera functions with a blank camera
2017-01-11 11:46:44 +02:00
mailwl
497acff923
Service/AC: add ac:i service
2016-12-30 09:20:11 +03:00
wwylele
753865ecfb
Frontend: emulate motion sensor
2016-12-26 10:52:16 +02:00
MerryMage
f587cb1402
core: Move emu_window and key_map into core
...
* Removes circular dependences (common should not depend on core)
2016-12-23 13:42:39 +00:00
mailwl
fe91382e49
Service/NWM: add nwm services
2016-12-22 22:51:27 +03:00
bunnei
c5f21efe18
core: Remove HLE module, consolidate code & various cleanups.
2016-12-21 23:48:13 -05:00
bunnei
d4f9119dba
core: Consolidate core and system state, remove system module & cleanups.
2016-12-21 23:29:13 -05:00
Yuri Kunde Schlesner
20bc04479e
Merge pull request #2320 from mailwl/cecd-update
...
Service/CECD: Add cecd:ndm service
2016-12-15 21:01:51 -08:00
bunnei
98565c461c
Merge pull request #2314 from mailwl/account
...
Service/ACT: move ACT services to folder
2016-12-15 13:51:29 -05:00
mailwl
81c3e204a7
Service/CECD: Add cecd:ndm service
2016-12-15 09:52:40 +03:00
Yuri Kunde Schlesner
dce4b9e969
Merge pull request #2249 from Subv/sessions_v3
...
Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
2016-12-14 20:35:33 -08:00
mailwl
5eb01485be
Service/ACT: move ACT services to folder
2016-12-14 09:05:46 +03:00
Lioncash
91eba9b44b
service: Add cfg:nor service
2016-12-09 05:07:41 -05:00
Subv
41e5e714d5
Use std::move where appropriate.
2016-12-08 11:06:19 -05:00
Lioncash
b891179e09
service: Add ptm::gets and ptm::sets services
2016-12-08 05:43:08 -05:00
Lioncash
e334f81333
service: Add mvd and qtm services
...
Adds the two New3DS-only modules.
3dbrew was used for command information.
2016-12-08 04:34:03 -05:00
Lioncash
491b177fc0
service: Add nfc services
...
3dbrew was used for the command information.
2016-12-08 03:24:41 -05:00
Subv
0d2f2880b9
Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication.
...
All handles obtained via srv::GetServiceHandle or svcConnectToPort are references to ClientSessions.
Service modules will wait on the counterpart of those ClientSessions (Called ServerSessions) using svcReplyAndReceive or svcWaitSynchronization[1|N], and will be awoken when a SyncRequest is performed.
HLE Interfaces are now ClientPorts which override the HandleSyncRequest virtual member function to perform command handling immediately.
2016-11-30 23:02:05 -05:00
wwylele
f4b483015d
FileSys: Implement OtherSaveData
2016-11-29 23:50:00 +02:00
wwylele
341660cf46
FileSys: abstract SD save data archive source
2016-11-29 23:50:00 +02:00
wwylele
58379b8ff4
FileSys: rename SaveDataCheck archive to NCCH archive
...
According to the observation from game and 3dbrew "Used for accessing general NCCH data"
2016-11-19 18:55:35 +02:00
wwylele
f88b31502c
FileSys: add SDMCWriteOnlyArchive
2016-11-19 18:55:34 +02:00
wwylele
aa4564c726
FileSys: add SaveDataArchive
...
The error checking of SaveDataArchive is completely different from DiskArchive, so it has to be a new class instead of a subclass of DiskArchive.
2016-11-19 17:17:19 +02:00
wwylele
dacffc907b
FileSys: add PathParser
2016-11-19 17:17:19 +02:00
bunnei
e7ebf6a338
dynarmic: Implement ARM CPU interface.
2016-09-15 17:49:26 -04:00
wwylele
b168f0ccaf
LDR: Implement CRO
2016-08-27 21:38:06 +08:00
mailwl
46abd6009a
HLE/Applets: Implement ErrEula applet
2016-07-04 09:54:51 +03:00
bunnei
00953db1f5
Merge pull request #1898 from archshift/interpreter-split-take2
...
Refactor arm_dyncom_interpreter into several files (take 2)
2016-06-16 14:47:55 -04:00
archshift
bb4ffce55e
Make arm_dyncom_trans* into a fully fledged compilation unit
2016-06-12 01:54:45 -07:00
bunnei
41dc836d8c
Merge pull request #1842 from Subv/ports
...
Kernel: Added ClientPort and ServerPort classes, along with svcCreatePort.
2016-06-11 22:46:35 -04:00
archshift
a72245ffab
Revert "Split huge interpreter source file into translation info and interpreter (+ some tiny misc style fixes)"
2016-06-10 17:41:15 -07:00
archshift
3b9ab5dc37
arm_dyncom_interpreter.cpp: Split by translation and interpreter logic
...
To facilitate the split, some small changes were made to names of
various structures and functions.
2016-06-08 20:59:24 -07:00
Subv
e717d569af
Kernel: Added ClientPort and ServerPort classes.
...
This is part of an ongoing effort to implement support for multiple processes.
2016-06-05 09:35:31 -05:00
Lioncash
83fc8db534
service: Add other DLP services
...
Specifically, dlp::CLNT and dlp::FKCL
Moves them to their own folder like with other services.
2016-06-04 19:43:33 -04:00
Emmanuel Gil Peyrot
a5a4369ade
Loader: Split SMDH into its own header and import helpers from QGameList
...
Also rewrite Qt wrappers to use those.
2016-05-21 20:15:42 +01:00
András Domonkos
1b8190fdcc
Update ACT:U and create ACT:A ( #1809 )
...
* Update ACT_U
* Create act_a.h
* Create act_a.cpp
* Add service ACT:A
* Add ACT:A source and header
* Fix wrong header
2016-05-17 21:28:25 -04:00
Subv
1fa691c8ac
APT: Move the shared font loading and relocation functions to their own subdirectory services/apt/bcfnt.
2016-05-12 20:01:54 -05:00
exhalatio
ea94aea447
Dummy implementation dlp:SRVR Service.
2016-04-03 06:05:20 +09:00
JamePeng
7d60d58ee1
Reorganize the ndm service path for dummy implement function
...
SuspendDaemons , ResumeDaemons , OverrideDefaultDaemons
The NDM file move to /core/hle/service/ndm/ now!
2016-03-15 00:42:47 +08:00
bunnei
5858a3a148
Merge pull request #1266 from Subv/miiapplet
...
HLE/Applets: Implemented a dummy Mii Selector applet.
2016-03-12 11:23:59 -05:00
Subv
32fb947b55
HLE/Applets: Implemented a dummy Mii Selector applet.
...
This prevents some games (like Super Mario 3D Land) from freezing when trying to launch it, however, it's not complete and won't let you go past Mii selection as the parameter structure hasn't been reverse engineered yet.
2016-03-12 10:59:37 -05:00
MerryMage
e614492dca
Memory: Implement MMIO
2016-01-30 18:41:04 +00:00
polaris-
1d319e5b46
Implement gdbstub
2015-10-04 11:16:59 -04:00
Yuri Kunde Schlesner
6bb23baf0a
Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h}
2015-08-16 01:03:46 -03:00
Lioncash
0ecc6e2f04
dyncom: Use ARMul_State as an object
...
Gets rid of C-like parameter passing.
2015-07-26 13:18:32 -04:00