summaryrefslogtreecommitdiff
path: root/sys/inc/mu
diff options
context:
space:
mode:
Diffstat (limited to 'sys/inc/mu')
-rw-r--r--sys/inc/mu/cpu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/inc/mu/cpu.h b/sys/inc/mu/cpu.h
index c96184b..d49c22e 100644
--- a/sys/inc/mu/cpu.h
+++ b/sys/inc/mu/cpu.h
@@ -31,14 +31,17 @@
#define _MU_CPU_H_ 1
#include <sys/types.h>
+#include <md/mcb.h>
/*
* Processor descriptor
*
* @id: Logical ID of the processor
+ * @mcb: Machine core block
*/
struct cpu_info {
uint8_t id;
+ struct mcb *mcb;
};
/*