From d7d50cc81f72d1275140d7a15c52b6f9e272896f Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Wed, 25 Nov 2020 11:27:45 -0700 Subject: Add module for controlling the MPU. The MPU is a module in arm chips which allow for memory access protection. They are more primitive than full MMUs, but can still provide at least basic access control between different process controls. --- include/kern/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/kern/common.h') diff --git a/include/kern/common.h b/include/kern/common.h index 653279e..c5afe3f 100644 --- a/include/kern/common.h +++ b/include/kern/common.h @@ -19,7 +19,7 @@ #define CTZ(n) __builtin_ctz(n) -#define bool int +#define bool unsigned int #ifndef __cplusplus #define true 1 #define false 0 -- cgit