Merge pull request #10883 from Pokechu22/pi-fifo-reset-gp-fifo

ProcessorInterface: Reset both GPFifo and Fifo on PI_FIFO_RESET
This commit is contained in:
Tilka
2022-07-31 17:06:37 +02:00
committed by GitHub
9 changed files with 58 additions and 49 deletions

View File

@ -8,6 +8,7 @@
#include "Common/CommonTypes.h"
#include "Common/Config/Config.h"
#include "Common/FileUtil.h"
#include "Core/HW/GPFifo.h"
#include "Core/HW/MMIO.h"
#include "UICommon/UICommon.h"
@ -40,7 +41,7 @@ TEST(IsMMIOAddress, SpecialAddresses)
SConfig::GetInstance().bWii = true;
// WG Pipe address, should not be handled by MMIO.
EXPECT_FALSE(MMIO::IsMMIOAddress(0x0C008000));
EXPECT_FALSE(MMIO::IsMMIOAddress(GPFifo::GATHER_PIPE_PHYSICAL_ADDRESS));
// Locked L1 cache allocation.
EXPECT_FALSE(MMIO::IsMMIOAddress(0xE0000000));
@ -52,7 +53,7 @@ TEST(IsMMIOAddress, SpecialAddresses)
// addresses.
EXPECT_FALSE(MMIO::IsMMIOAddress(0xCC0000E0));
// And lets check some valid addresses too
// And let's check some valid addresses too
EXPECT_TRUE(MMIO::IsMMIOAddress(0x0C0000E0)); // GameCube MMIOs
EXPECT_TRUE(MMIO::IsMMIOAddress(0x0D00008C)); // Wii MMIOs
EXPECT_TRUE(MMIO::IsMMIOAddress(0x0D800F10)); // Mirror of Wii MMIOs