diff --git a/src/CpuStatus.cs b/src/CpuStatus.cs new file mode 100644 index 0000000..390e9d7 --- /dev/null +++ b/src/CpuStatus.cs @@ -0,0 +1,8 @@ +namespace processor +{ + public enum CpuStatus + { + Running = 0, + Stopped = 1 + }; +} \ No newline at end of file