Cosmos/source/Kernel-X86/00-CPU/Cosmos.CPU/Temp.cs
2017-07-31 13:32:14 -04:00

17 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.CPU {
public static class Temp {
public static void ShowText() {
unsafe {
byte* xTest = (byte*)0xB8000;
*xTest = 65;
xTest = (byte*)0xB8001;
*xTest = 90;
}
}
}
}