mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
g3
This commit is contained in:
parent
ea9381f499
commit
3bbeb41f97
4 changed files with 9 additions and 0 deletions
Binary file not shown.
BIN
Temp - Ignore me (or not, but dont goof me up)/RingsGen3.lnk
Normal file
BIN
Temp - Ignore me (or not, but dont goof me up)/RingsGen3.lnk
Normal file
Binary file not shown.
|
|
@ -4,5 +4,8 @@ using System.Text;
|
||||||
|
|
||||||
namespace Cosmos.Platform.PC.Devices {
|
namespace Cosmos.Platform.PC.Devices {
|
||||||
public class Processor : HAL.Devices.Processor {
|
public class Processor : HAL.Devices.Processor {
|
||||||
|
public override ulong SetOption(uint aID, ulong aValue = 0) {
|
||||||
|
return base.SetOption(aID, aValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,11 @@ using System.Text;
|
||||||
|
|
||||||
namespace Cosmos.HAL.Devices {
|
namespace Cosmos.HAL.Devices {
|
||||||
public abstract class Processor : Device {
|
public abstract class Processor : Device {
|
||||||
|
// Generic method that is specific to each CPU ring.
|
||||||
|
// Designed to allow limited extra API communication to CPU from HAL.
|
||||||
|
// Optionally implemented.
|
||||||
|
public virtual UInt64 SetOption(UInt32 aID, UInt64 aValue = 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue