summaryrefslogtreecommitdiff
path: root/Noddybox.Emulation.EightBit/IMemory.cs
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2011-12-28 00:11:12 +0000
committerIan C <ianc@noddybox.co.uk>2011-12-28 00:11:12 +0000
commit2e3102879b2d3059f4ce0efc1a0ecd4bc3142a99 (patch)
tree08050e094fc71a911195d72aeeca080e0361c48b /Noddybox.Emulation.EightBit/IMemory.cs
parentd21b1c0d0a533b70c3ed13d888ff7b6a8a6babd8 (diff)
Added some more base classes and started on the Z80 implementation.
Diffstat (limited to 'Noddybox.Emulation.EightBit/IMemory.cs')
-rw-r--r--Noddybox.Emulation.EightBit/IMemory.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Noddybox.Emulation.EightBit/IMemory.cs b/Noddybox.Emulation.EightBit/IMemory.cs
index 5131eb0..2c842a5 100644
--- a/Noddybox.Emulation.EightBit/IMemory.cs
+++ b/Noddybox.Emulation.EightBit/IMemory.cs
@@ -21,13 +21,13 @@ namespace Noddybox.Emulation.EightBit
/// </summary>
/// <param name="address">The address to read.</param>
/// <returns>The value at that address.</returns>
- byte Read(UInt16 address);
+ byte Read(ushort address);
/// <summary>
/// Writes a byte at a given address.
/// </summary>
/// <param name="address">The address to write to.</param>
/// <param name="value">The value to write.</param>
- void Write(UInt16 address, byte value);
+ void Write(ushort address, byte value);
}
}