mirror of
https://git.eden-emu.dev/archive/citron
synced 2026-03-28 12:29:34 -04:00
dyncom: Make Load/Store instructions support big endian
This commit is contained in:
@@ -245,6 +245,12 @@ u32 Read32(const VAddr addr) {
|
||||
return (u32)data;
|
||||
}
|
||||
|
||||
u64 Read64(const VAddr addr) {
|
||||
u64_le data = 0;
|
||||
Read<u64_le>(data, addr);
|
||||
return (u64)data;
|
||||
}
|
||||
|
||||
u32 Read8_ZX(const VAddr addr) {
|
||||
return (u32)Read8(addr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user