Created
September 24, 2016 03:27
-
-
Save toptensoftware/9f63ffbe16652c7eb9ef121d8fc37929 to your computer and use it in GitHub Desktop.
Sharp86's IBus interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IBus | |
{ | |
byte ReadByte(ushort seg, ushort offset); | |
void WriteByte(ushort seg, ushort offset, byte value); | |
ushort ReadPortWord(ushort port); | |
void WritePortWord(ushort port, ushort value); | |
bool IsExecutableSelector(ushort seg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment