mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-06 16:22:40 +00:00
This commit is contained in:
parent
818c184792
commit
439da46c55
2 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
Loading…
Reference in a new issue