mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
ps5: collect type of process and firmware
add initial gc and dce ioctls implementation
This commit is contained in:
parent
ffe2837915
commit
b6556e83ee
11 changed files with 297 additions and 41 deletions
|
|
@ -15,6 +15,12 @@ namespace orbis {
|
|||
struct Thread;
|
||||
struct Process;
|
||||
|
||||
enum class DynType : std::uint8_t {
|
||||
None,
|
||||
Ps4,
|
||||
Ps5,
|
||||
};
|
||||
|
||||
struct ModuleNeeded {
|
||||
utils::kstring name;
|
||||
std::uint16_t version;
|
||||
|
|
@ -98,6 +104,8 @@ struct Module final {
|
|||
uint16_t flags{};
|
||||
uint64_t entryPoint{};
|
||||
|
||||
DynType dynType = DynType::None;
|
||||
|
||||
uint32_t phNum{};
|
||||
uint64_t phdrAddress{};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue