shader_ir: Add comments on missing instruction.

Also shows Nvidia's address space on comments.
This commit is contained in:
Fernando Sahmkow
2019-07-05 14:13:14 -04:00
committed by FernandoS27
parent 2de7649311
commit f2549739d1
2 changed files with 9 additions and 2 deletions

View File

@ -127,6 +127,10 @@ public:
return disable_flow_stack;
}
u32 ConvertAddressToNvidiaSpace(const u32 address) const {
return (address - main_offset) * sizeof(Tegra::Shader::Instruction);
}
private:
void Decode();