mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-29 00:59:56 -06:00
Revert "Misc fixes for dsiwifi BMI stage (#1216)"
This reverts commit a54b076b06
.
This commit is contained in:
@ -95,20 +95,6 @@ private:
|
||||
Mailbox[n].Write(val & 0xFF);
|
||||
}
|
||||
|
||||
u32 MB_Peek32(int n)
|
||||
{
|
||||
return MB_Peek32(n, 0);
|
||||
}
|
||||
|
||||
u32 MB_Peek32(int n, int offs)
|
||||
{
|
||||
u32 ret = Mailbox[n].Peek(offs+0);
|
||||
ret |= (Mailbox[n].Peek(offs+1) << 8);
|
||||
ret |= (Mailbox[n].Peek(offs+2) << 16);
|
||||
ret |= (Mailbox[n].Peek(offs+3) << 24);
|
||||
return ret;
|
||||
}
|
||||
|
||||
u32 MB_Read32(int n)
|
||||
{
|
||||
u32 ret = Mailbox[n].Read();
|
||||
|
Reference in New Issue
Block a user