Remove dynamic usage from Ryujinx.HLE (will come back to make this not generic explode)

This commit is contained in:
Aaron Robinson
2025-11-19 00:33:17 -06:00
parent 4f5eea3417
commit 00021121ea
31 changed files with 198 additions and 106 deletions

View File

@@ -79,7 +79,7 @@ namespace Ryujinx.HLE.HOS.Tamper.CodeEmitters
throw new TamperCompilationException($"Invalid offset type {offsetType} in Atmosphere cheat");
}
InstructionHelper.EmitMov(operationWidth, context, destinationMemory, sourceRegister);
InstructionHelper.Emit<OpMov<byte>>(operationWidth, context, destinationMemory, sourceRegister, null);
switch (incrementAddressRegister)
{