mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-06-06 11:01:38 +12:00
Added the rest of the kernel resource functions
This commit is contained in:
parent
a89c850189
commit
0fbc5f210f
8 changed files with 206 additions and 30 deletions
|
@ -42,8 +42,7 @@ public:
|
|||
}
|
||||
|
||||
void MemoryWrite64(u32 vaddr, u64 value) override {
|
||||
MemoryWrite32(vaddr, u32(value));
|
||||
MemoryWrite32(vaddr + 4, u32(value >> 32));
|
||||
mem.write64(vaddr, value);
|
||||
}
|
||||
|
||||
void InterpreterFallback(u32 pc, size_t num_instructions) override {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue