mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
346 B
C#
17 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Core.MemoryGroup
|
|
{
|
|
public class AHCI
|
|
{
|
|
public MemoryBlock DataBlock;
|
|
|
|
public AHCI(uint aSectorSize)
|
|
{
|
|
DataBlock = new Core.MemoryBlock(0x0046C000, aSectorSize * 1024);
|
|
DataBlock.Fill(0);
|
|
}
|
|
}
|
|
}
|