From 2e3102879b2d3059f4ce0efc1a0ecd4bc3142a99 Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 28 Dec 2011 00:11:12 +0000 Subject: Added some more base classes and started on the Z80 implementation. --- Noddybox.Emulation.EightBit/IMemory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Noddybox.Emulation.EightBit/IMemory.cs') 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 /// /// The address to read. /// The value at that address. - byte Read(UInt16 address); + byte Read(ushort address); /// /// Writes a byte at a given address. /// /// The address to write to. /// The value to write. - void Write(UInt16 address, byte value); + void Write(ushort address, byte value); } } -- cgit v1.2.3