summaryrefslogtreecommitdiff
path: root/Noddybox.Emulation.EightBit/IMemory.cs
diff options
context:
space:
mode:
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);
}
}