Skip to content

Instantly share code, notes, and snippets.

@Myvar
Created July 23, 2015 18:30
Show Gist options
  • Save Myvar/57d47a745afcc6d93d7a to your computer and use it in GitHub Desktop.
Save Myvar/57d47a745afcc6d93d7a to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.Core.IOGroup
{
public class VBE : IOGroup
{
public IOPortWrite VBE_DISPI_INDEX_ENABLE = new IOPortWrite(0x4);
public IOPortWrite VBE_DISPI_INDEX_XRES = new IOPortWrite(0x4);
public IOPortWrite VBE_DISPI_INDEX_YRES = new IOPortWrite(0x4);
public IOPortWrite VBE_DISPI_INDEX_BPP = new IOPortWrite(0x4);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment