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)
|
public string Disassemble(uint addr, Func<long, byte> peek, ref byte P, out int length)
|
||||||
{
|
{
|
||||||
byte opcode = peek(addr);
|
byte opcode = peek(addr);
|
||||||
string ibuf;
|
string ibuf = null;
|
||||||
string pbuf;
|
string pbuf = null;
|
||||||
int offset = -1, sval = -1;
|
int offset = -1, sval = -1;
|
||||||
|
|
||||||
bool tsrc_2 = false;
|
bool tsrc_2 = false;
|
||||||
|
|
Loading…
Reference in New Issue