mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
14 lines
436 B
C#
14 lines
436 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.HAL.Devices {
|
|
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;
|
|
}
|
|
}
|
|
}
|