mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
This commit is contained in:
parent
3bee146009
commit
2fcf25dee0
1 changed files with 4 additions and 0 deletions
|
|
@ -8,10 +8,14 @@ namespace Cosmos.Hardware.PC.Bus {
|
|||
// These are public. Would prefer internal, but will cause issues
|
||||
// in future as we add devices from other assemblies.
|
||||
// What else can we do to restrict access to them?
|
||||
//
|
||||
// all plugs
|
||||
public static void Write8(UInt16 aPort, byte aData) { }
|
||||
public static void Write16(UInt16 aPort, UInt16 aData) { }
|
||||
public static void Write32(UInt16 aPort, UInt32 aData) { }
|
||||
|
||||
public static byte Read8(UInt16 aPort) { return 0; }
|
||||
public static UInt16 Read16(UInt16 aPort) { return 0; }
|
||||
public static UInt32 Read32(UInt16 aPort) { return 0; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue