Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Last active September 24, 2016 03:19
Show Gist options
  • Save toptensoftware/58bbc81d269458f2df44932ca565614c to your computer and use it in GitHub Desktop.
Save toptensoftware/58bbc81d269458f2df44932ca565614c to your computer and use it in GitHub Desktop.
Protected Mode Addressing
class Selector
{
public byte[] memory;
}
Selector[] _selectorTable;
public byte ReadByte(ushort seg, ushort offset)
{
var sel = _selectorTable[seg >> 3];
return sel.memory[offset];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment