Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
0a127808
There was an error fetching the commit references. Please try again later.
Commit
0a127808
authored
7 years ago
by
Subv
Committed by
bunnei
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
svc: Stub SetMemoryAttribute
parent
7ad20154
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/hle/kernel/svc.cpp
+5
-0
5 additions, 0 deletions
src/core/hle/kernel/svc.cpp
src/core/hle/kernel/svc_wrap.h
+6
-0
6 additions, 0 deletions
src/core/hle/kernel/svc_wrap.h
with
11 additions
and
0 deletions
src/core/hle/kernel/svc.cpp
+
5
−
0
View file @
0a127808
...
@@ -33,6 +33,11 @@ static ResultCode SetHeapSize(VAddr* heap_addr, u64 heap_size) {
...
@@ -33,6 +33,11 @@ static ResultCode SetHeapSize(VAddr* heap_addr, u64 heap_size) {
return
RESULT_SUCCESS
;
return
RESULT_SUCCESS
;
}
}
static
ResultCode
SetMemoryAttribute
(
VAddr
addr
,
u64
size
,
u32
state0
,
u32
state1
)
{
LOG_WARNING
(
Kernel_SVC
,
"(STUBBED) called, addr=0x%llx"
,
addr
);
return
RESULT_SUCCESS
;
}
/// Maps a memory range into a different range.
/// Maps a memory range into a different range.
static
ResultCode
MapMemory
(
VAddr
dst_addr
,
VAddr
src_addr
,
u64
size
)
{
static
ResultCode
MapMemory
(
VAddr
dst_addr
,
VAddr
src_addr
,
u64
size
)
{
LOG_TRACE
(
Kernel_SVC
,
"called, dst_addr=0x%llx, src_addr=0x%llx, size=0x%llx"
,
dst_addr
,
LOG_TRACE
(
Kernel_SVC
,
"called, dst_addr=0x%llx, src_addr=0x%llx, size=0x%llx"
,
dst_addr
,
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/kernel/svc_wrap.h
+
6
−
0
View file @
0a127808
...
@@ -70,6 +70,12 @@ void SvcWrap() {
...
@@ -70,6 +70,12 @@ void SvcWrap() {
FuncReturn
(
retval
);
FuncReturn
(
retval
);
}
}
template
<
ResultCode
func
(
u64
,
u64
,
u32
,
u32
)>
void
SvcWrap
()
{
FuncReturn
(
func
(
PARAM
(
0
),
PARAM
(
1
),
(
u32
)(
PARAM
(
3
)
&
0xFFFFFFFF
),
(
u32
)(
PARAM
(
3
)
&
0xFFFFFFFF
)).
raw
);
}
template
<
ResultCode
func
(
u32
,
u64
,
u32
)>
template
<
ResultCode
func
(
u32
,
u64
,
u32
)>
void
SvcWrap
()
{
void
SvcWrap
()
{
FuncReturn
(
func
((
u32
)
PARAM
(
0
),
PARAM
(
1
),
(
u32
)
PARAM
(
2
)).
raw
);
FuncReturn
(
func
((
u32
)
PARAM
(
0
),
PARAM
(
1
),
(
u32
)
PARAM
(
2
)).
raw
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment