This commit is contained in:
kudzu_cp 2008-06-22 01:37:52 +00:00
parent 818c184792
commit 439da46c55
2 changed files with 2 additions and 2 deletions

View file

@ -96,7 +96,7 @@
<Compile Include="Old\Storage\ATA.cs" /> <Compile Include="Old\Storage\ATA.cs" />
<Compile Include="Old\Storage\ATAOld.cs" /> <Compile Include="Old\Storage\ATAOld.cs" />
<Compile Include="Old\Storage\Storage.cs" /> <Compile Include="Old\Storage\Storage.cs" />
<Compile Include="SerialDevice.cs" /> <Compile Include="DeviceSerial.cs" />
<Compile Include="TextScreen.cs" /> <Compile Include="TextScreen.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View file

@ -9,7 +9,7 @@ namespace Cosmos.Hardware {
// for higher speed serial devices. However I suspect // for higher speed serial devices. However I suspect
// higher speed serial devices will use a block transfer // higher speed serial devices will use a block transfer
// type. // type.
public abstract class SerialDevice : Device { public abstract class DeviceSerial : Device {
public delegate void ByteReceivedDelegate(byte aValue); public delegate void ByteReceivedDelegate(byte aValue);
public ByteReceivedDelegate ByteReceived; public ByteReceivedDelegate ByteReceived;
} }