mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
16 lines
396 B
C#
16 lines
396 B
C#
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 IOPort VbeIndex= new IOPort(0x01CE);
|
|
public IOPort VbeData = new IOPort(0x01CF);
|
|
|
|
public MemoryBlock08 VGAMemoryBlock = new MemoryBlock08(0xE0000000, 1280 * 1024 * 4);
|
|
}
|
|
}
|