mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
409 B
C#
15 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Platform.PC.Devices {
|
|
public class Processor : HAL.Devices.Processor {
|
|
public override ulong SetOption(uint aID, ulong aValue = 0) {
|
|
CPU.x86.TempDebug.ShowText('D');
|
|
if (aID == 1) {
|
|
CPU.x86.TempDebug.ShowText('E');
|
|
}
|
|
return 0;
|
|
}
|
|
}
|
|
}
|