summaryrefslogtreecommitdiff
path: root/Noddybox.Emulation.EightBit/IDevice.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Noddybox.Emulation.EightBit/IDevice.cs')
-rw-r--r--Noddybox.Emulation.EightBit/IDevice.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Noddybox.Emulation.EightBit/IDevice.cs b/Noddybox.Emulation.EightBit/IDevice.cs
index 108adf9..00ef38d 100644
--- a/Noddybox.Emulation.EightBit/IDevice.cs
+++ b/Noddybox.Emulation.EightBit/IDevice.cs
@@ -22,13 +22,13 @@ namespace Noddybox.Emulation.EightBit
/// </summary>
/// <param name="device">The address of the device.</param>
/// <returns>The byte returned from the device.</returns>
- byte Read(UInt16 device);
+ byte Read(ushort device);
/// <summary>
/// Write to a device.
/// </summary>
/// <param name="device">The address of the device.</param>
/// <param name="value">The value to write to the device.</param>
- void Write(UInt16 device, byte value);
+ void Write(ushort device, byte value);
}
}