summaryrefslogtreecommitdiff
path: root/os/ipengine/mmu.c
diff options
context:
space:
mode:
authorKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-28 12:27:31 +0300
committerKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-28 12:27:31 +0300
commit78ee7d5717807e6ac779293d0d3c78341de6130a (patch)
treea43e3b0f61318ac45e6d907c7cc5bad2c6d7f497 /os/ipengine/mmu.c
parentbdaf46cf45bbb59261da245d548a179d95a42768 (diff)
Move existing boards into subdits split per arch
Diffstat (limited to 'os/ipengine/mmu.c')
-rw-r--r--os/ipengine/mmu.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/os/ipengine/mmu.c b/os/ipengine/mmu.c
deleted file mode 100644
index c9cd758b..00000000
--- a/os/ipengine/mmu.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "u.h"
-#include "../port/lib.h"
-#include "mem.h"
-#include "dat.h"
-#include "fns.h"
-
-void
-mmuinit(void)
-{
- /* the l.s initial TLB settings do all that's required */
-}
-
-int
-segflush(void *a, ulong n)
-{
- /* flush dcache then invalidate icache */
- dcflush(a, n);
- icflush(a, n);
- return 0;
-}