diff options
| author | Ian C <ianc@noddybox.co.uk> | 2011-12-28 00:11:12 +0000 |
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2011-12-28 00:11:12 +0000 |
| commit | 2e3102879b2d3059f4ce0efc1a0ecd4bc3142a99 (patch) | |
| tree | 08050e094fc71a911195d72aeeca080e0361c48b /Noddybox.Emulation.EightBit/IDevice.cs | |
| parent | d21b1c0d0a533b70c3ed13d888ff7b6a8a6babd8 (diff) | |
Added some more base classes and started on the Z80 implementation.
Diffstat (limited to 'Noddybox.Emulation.EightBit/IDevice.cs')
| -rw-r--r-- | Noddybox.Emulation.EightBit/IDevice.cs | 4 |
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);
}
}
|
