aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-24 23:38:38 -0700
committerChristian Cunningham <cc@localhost>2022-02-24 23:38:38 -0700
commit9169796632fcdeb5e8e74ed60c6cbe31081e51f2 (patch)
treef9076beb2cbdd4f8cb2677b9be64fa145b0fc3d1 /include
parenta9e89946ad7f6918b954d7416c755a90c0eace9d (diff)
MMU and working on hardware
Diffstat (limited to 'include')
-rw-r--r--include/lib/mmu.h6
-rw-r--r--include/sys/timer.h9
2 files changed, 6 insertions, 9 deletions
diff --git a/include/lib/mmu.h b/include/lib/mmu.h
new file mode 100644
index 0000000..714fd01
--- /dev/null
+++ b/include/lib/mmu.h
@@ -0,0 +1,6 @@
+#ifndef LIB_MMU_H
+#define LIB_MMU_H
+
+void mmu_init(void);
+
+#endif
diff --git a/include/sys/timer.h b/include/sys/timer.h
deleted file mode 100644
index 7120c18..0000000
--- a/include/sys/timer.h
+++ /dev/null
@@ -1,9 +0,0 @@
-#ifndef SYS_TIMER_H
-#define SYS_TIMER_H
-
-/// Cycles Per Second
-#define CPS 100
-
-void c_timer(void);
-
-#endif