index
:
marvinborner/Melvix
dev
:computer: Small operating system written from scratch (covid/school project)
Marvin
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
cpu.c
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'lib/cpu.c')
-rw-r--r--
lib/cpu.c
6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/cpu.c b/lib/cpu.c
index 5c27c51..5ed9de9 100644
--- a/
lib/cpu.c
+++ b/
lib/cpu.c
@@ -67,3 +67,9 @@ void idle()
while (1)
hlt();
}
+
+void loop()
+{
+ cli();
+ idle();
+}