mirror of
https://github.com/DualCoder/vgpu_unlock.git
synced 2024-12-22 18:45:26 +00:00
Add workaround for Maxwell devices not supporting inforom.
This commit is contained in:
parent
1af65cd505
commit
7f2a16d0fc
|
@ -314,6 +314,11 @@ script_source = r"""
|
||||||
syslog("op_type: 0x" + op_type.toString(16) + " failed.");
|
syslog("op_type: 0x" + op_type.toString(16) + " failed.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Workaround for some Maxwell cards not supporting reading inforom.
|
||||||
|
if(op_type == 0x2080014b && status == 0x56) {
|
||||||
|
this.argp.add(0x1C).writeU32(0x57);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue