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/IDevice.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Noddybox.Emulation.EightBit/IDevice.cs') 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 /// /// The address of the device. /// The byte returned from the device. - byte Read(UInt16 device); + byte Read(ushort device); /// /// Write to a device. /// /// The address of the device. /// The value to write to the device. - void Write(UInt16 device, byte value); + void Write(ushort device, byte value); } } -- cgit v1.3