Fix compiling on ancient compilers, and add a global.json which restricts bizhawk to ancient compilers
This commit is contained in:
parent
570f17cedd
commit
5a1b5915bf
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"sdk": {
|
||||
"version": "3.1.100",
|
||||
"rollForward": "latestFeature"
|
||||
}
|
||||
}
|
|
@ -44,8 +44,8 @@ namespace BizHawk.Emulation.Cores.Components.W65816
|
|||
public string Disassemble(uint addr, Func<long, byte> peek, ref byte P, out int length)
|
||||
{
|
||||
byte opcode = peek(addr);
|
||||
string ibuf;
|
||||
string pbuf;
|
||||
string ibuf = null;
|
||||
string pbuf = null;
|
||||
int offset = -1, sval = -1;
|
||||
|
||||
bool tsrc_2 = false;
|
||||
|
|
Loading…
Reference in New Issue