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
b87536e8
There was an error fetching the commit references. Please try again later.
Commit
b87536e8
authored
10 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
changed loader to use __KernelLoadExec
parent
b5ef630c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/loader.cpp
+9
-8
9 additions, 8 deletions
src/core/loader.cpp
with
9 additions
and
8 deletions
src/core/loader.cpp
+
9
−
8
View file @
b87536e8
...
...
@@ -10,7 +10,7 @@
#include
"core/core.h"
#include
"core/file_sys/directory_file_system.h"
#include
"core/elf/elf_reader.h"
#include
"core/hle/kernel/kernel.h"
#include
"core/mem_map.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
...
...
@@ -56,7 +56,7 @@ bool Load_ELF(std::string &filename) {
elf_reader
=
new
ElfReader
(
buffer
);
elf_reader
->
LoadInto
(
0x00100000
);
Core
::
g_app_core
->
SetPC
(
elf_reader
->
GetEntryPoint
());
__KernelLoadExec
(
elf_reader
->
GetEntryPoint
());
delete
[]
buffer
;
delete
elf_reader
;
...
...
@@ -89,11 +89,11 @@ bool Load_DAT(std::string &filename) {
* but for the sake of making it easier... we'll temporarily/hackishly
* allow it. No sense in making a proper reader for this.
*/
u32
entrypoint
=
0x00100000
;
// write to same entrypoint as elf
u32
entry
_
point
=
0x00100000
;
// write to same entrypoint as elf
u32
payload_offset
=
0xA150
;
const
u8
*
src
=
&
buffer
[
payload_offset
];
u8
*
dst
=
Memory
::
GetPointer
(
entrypoint
);
u8
*
dst
=
Memory
::
GetPointer
(
entry
_
point
);
u32
srcSize
=
size
-
payload_offset
;
//just load everything...
u32
*
s
=
(
u32
*
)
src
;
u32
*
d
=
(
u32
*
)
dst
;
...
...
@@ -102,7 +102,8 @@ bool Load_DAT(std::string &filename) {
*
d
++
=
(
*
s
++
);
}
Core
::
g_app_core
->
SetPC
(
entrypoint
);
__KernelLoadExec
(
entry_point
);
delete
[]
buffer
;
}
...
...
@@ -131,10 +132,10 @@ bool Load_BIN(std::string &filename) {
f
.
ReadBytes
(
buffer
,
size
);
u32
entrypoint
=
0x00100000
;
// Hardcoded, read from exheader
u32
entry
_
point
=
0x00100000
;
// Hardcoded, read from exheader
const
u8
*
src
=
buffer
;
u8
*
dst
=
Memory
::
GetPointer
(
entrypoint
);
u8
*
dst
=
Memory
::
GetPointer
(
entry
_
point
);
u32
srcSize
=
size
;
u32
*
s
=
(
u32
*
)
src
;
u32
*
d
=
(
u32
*
)
dst
;
...
...
@@ -143,7 +144,7 @@ bool Load_BIN(std::string &filename) {
*
d
++
=
(
*
s
++
);
}
Core
::
g_app_core
->
SetPC
(
entrypoint
);
__KernelLoadExec
(
entry
_
point
);
delete
[]
buffer
;
}
...
...
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