From f68de21ad1cd267029b60ee3767d219c46f5fba0 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 10 Apr 2014 19:58:28 -0400 Subject: added initial modules for setting up SysCall HLE --- src/core/core.vcxproj | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 1800b5512..55ce508a6 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -152,6 +152,7 @@ + @@ -182,6 +183,9 @@ + + + -- cgit v1.2.3 From 2a7d7ce55d51a1cf893d14e893b87941df4a2f03 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 10 Apr 2014 21:30:00 -0400 Subject: - removed syscall classes (will just use HLEFunction) - added hle.cpp and module registration - removed unused code --- src/core/core.vcxproj | 1 + 1 file changed, 1 insertion(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 55ce508a6..8097a47d3 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -152,6 +152,7 @@ + -- cgit v1.2.3 From f6c328cf37fe6e0250c20fcbf128f301b3d71d36 Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 11 Apr 2014 18:07:49 -0400 Subject: moved hle.cpp into hle folder (due to mistake earlier) --- src/core/core.vcxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 8097a47d3..89795ce63 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -152,7 +152,7 @@ - + -- cgit v1.2.3 From 02fbd42e7f006236199698c61ca917092afa1f7d Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 11 Apr 2014 18:44:21 -0400 Subject: - renamed hle_syscall to just syscall - added service.h as an initial service interface --- src/core/core.vcxproj | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 89795ce63..10ecca596 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -153,7 +153,7 @@ - + @@ -186,7 +186,8 @@ - + + -- cgit v1.2.3 From 68e198476f17a026fed88f3c9a271aa768694354 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sat, 12 Apr 2014 21:55:36 -0400 Subject: - added HLE to connect to "srv:" service - added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function --- src/core/core.vcxproj | 1 + 1 file changed, 1 insertion(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 10ecca596..b10ae8684 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -153,6 +153,7 @@ + -- cgit v1.2.3 From 9f4d677cdf1fcc937d2e68cae3f52f53c24582f8 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 13 Apr 2014 16:33:45 -0400 Subject: added framework for APT service (application and title launching service) --- src/core/core.vcxproj | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index b10ae8684..be750b24f 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -153,6 +153,7 @@ + @@ -187,6 +188,7 @@ + -- cgit v1.2.3 From 7ec5950bc4c8e4a786df1f4c3392d7b5332d1613 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 15 Apr 2014 22:40:19 -0400 Subject: - extracted srv: calls from service.cpp and put in its own module - added function tables for service calls - lots of refactoring --- src/core/core.vcxproj | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index be750b24f..da3cc7a26 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -155,6 +155,7 @@ + @@ -190,6 +191,7 @@ + -- cgit v1.2.3 From 32c3462047d814eada8f3b80ee5ea2cd03936ae0 Mon Sep 17 00:00:00 2001 From: bunnei Date: Wed, 16 Apr 2014 00:03:41 -0400 Subject: - added stubbed out GSP::Gpu service interface - various cleanups/refactors to HLE services --- src/core/core.vcxproj | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index da3cc7a26..931345441 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -154,6 +154,7 @@ + @@ -190,6 +191,7 @@ + -- cgit v1.2.3 From bb5bc2df257330561c886ed768ce2191e2641a6c Mon Sep 17 00:00:00 2001 From: bunnei Date: Wed, 16 Apr 2014 20:58:36 -0400 Subject: added class stub for HID:User service --- src/core/core.vcxproj | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 931345441..caf827be4 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -155,6 +155,7 @@ + @@ -192,6 +193,7 @@ + -- cgit v1.2.3 From c3a4b4bfca154f3f27830fe747c0fd74f8459d84 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 17 Apr 2014 23:43:55 -0400 Subject: added NDMA hardware interface --- src/core/core.vcxproj | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index caf827be4..80bd75eeb 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -161,6 +161,7 @@ + @@ -199,6 +200,7 @@ + -- cgit v1.2.3 From 70c2cce963264678b5ba5b6aa17c2653bf459e61 Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 17 Apr 2014 23:48:23 -0400 Subject: renamed hw_lcd module to just lcd --- src/core/core.vcxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/core.vcxproj') diff --git a/src/core/core.vcxproj b/src/core/core.vcxproj index 80bd75eeb..b6fc604c6 100644 --- a/src/core/core.vcxproj +++ b/src/core/core.vcxproj @@ -160,7 +160,7 @@ - + @@ -199,7 +199,7 @@ - + -- cgit v1.2.3