19 lines
579 B
Plaintext
19 lines
579 B
Plaintext
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
|
||
|
|
||
|
namespace Microsoft.Singularity.Io
|
||
|
{
|
||
|
public sealed class IoPortRange
|
||
|
{
|
||
|
public IoPortRange! RangeAtOffset(ushort offset, ushort bytes,
|
||
|
bool readable, bool writable);
|
||
|
|
||
|
public IoPort! PortAtOffset(ushort offset, ushort bytes, Access access);
|
||
|
|
||
|
public IoPort! PortAtOffset(ushort offset, ushort bytes, bool readable, bool writable);
|
||
|
}
|
||
|
}
|