fix virtu build with analyzers
This commit is contained in:
parent
8486b56395
commit
fa77b408ff
|
@ -4,10 +4,10 @@
|
|||
{
|
||||
// read Device Select' address $C0nX; n = slot number + 8
|
||||
int ReadIoRegionC0C0(int address);
|
||||
|
||||
|
||||
// read I/O Select' address $CsXX; s = slot number
|
||||
int ReadIoRegionC1C7(int address);
|
||||
|
||||
|
||||
// read I/O Strobe' address $C800-$CFFF
|
||||
int ReadIoRegionC8CF(int address);
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
|||
|
||||
// write I/O Select' address $CsXX; s = slot number
|
||||
void WriteIoRegionC1C7(int address, int data);
|
||||
|
||||
|
||||
// write I/O Strobe' address $C800-$CFFF
|
||||
void WriteIoRegionC8CF(int address, int data);
|
||||
}
|
||||
|
|
|
@ -2214,7 +2214,7 @@ namespace Jellyfish.Virtu
|
|||
private Action<int, byte> _writeIoRegionC3C3;
|
||||
private Action<int, byte> _writeIoRegionC8CF;
|
||||
private Action<int, byte> _writeRomRegionD0FF;
|
||||
|
||||
|
||||
public Action<uint> ReadCallback;
|
||||
public Action<uint> WriteCallback;
|
||||
public Action<uint> ExecuteCallback;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Virtu")]
|
||||
|
@ -13,8 +13,8 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
|
@ -24,11 +24,11 @@ using System.Runtime.InteropServices;
|
|||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
|
|
|
@ -507,7 +507,7 @@ namespace Jellyfish.Virtu
|
|||
else
|
||||
{
|
||||
// 3 2 1 0
|
||||
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
|
||||
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
|
||||
//
|
||||
// - - - - - - - - 0 0 0 0 0 0 0 0 + + + + + + + +
|
||||
// H 1 0 H 6 5 4 3 2 1 0 H 1 0
|
||||
|
@ -565,7 +565,7 @@ namespace Jellyfish.Virtu
|
|||
else
|
||||
{
|
||||
// 3 2 1 0
|
||||
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
|
||||
// 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
|
||||
//
|
||||
// - - - - - - - - 0 0 0 0 0 0 0 0 + + + + + + + +
|
||||
// X 1 0 X 6 5 4 3 2 1 0 X 1 0
|
||||
|
|
Loading…
Reference in New Issue