mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
GE Debugger: Oops, emit transfer/clut cmds.
This commit is contained in:
parent
36069d1446
commit
4f07ec0df5
1 changed files with 4 additions and 0 deletions
|
@ -291,6 +291,8 @@ static void EmitTransfer(u32 op) {
|
|||
srcBytes = Memory::ValidSize(srcBasePtr, srcBytes);
|
||||
|
||||
EmitCommandWithRAM(CommandType::TRANSFERSRC, Memory::GetPointerUnchecked(srcBasePtr), srcBytes);
|
||||
|
||||
lastRegisters.push_back(op);
|
||||
}
|
||||
|
||||
static void EmitClut(u32 op) {
|
||||
|
@ -299,6 +301,8 @@ static void EmitClut(u32 op) {
|
|||
bytes = Memory::ValidSize(addr, bytes);
|
||||
|
||||
EmitCommandWithRAM(CommandType::CLUT, Memory::GetPointerUnchecked(addr), bytes);
|
||||
|
||||
lastRegisters.push_back(op);
|
||||
}
|
||||
|
||||
static void EmitPrim(u32 op) {
|
||||
|
|
Loading…
Add table
Reference in a new issue