From ff4fc7055a3ffed37edef9e5dbfbdffb0cc3cab0 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Sat, 2 Jan 2021 02:03:54 -0800 Subject: [PATCH] Changed tabs to spaces. --- pdp11_mmu.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pdp11_mmu.c b/pdp11_mmu.c index 3fc8674..eb75cbd 100644 --- a/pdp11_mmu.c +++ b/pdp11_mmu.c @@ -8,7 +8,7 @@ void init_mmu(void) { - /* + /* * First populate the relocation registers, all zero since we want an * identity mapping, except the highest page that we remap to the physical MMIO * range. @@ -22,9 +22,9 @@ init_mmu(void) SET(KISAR6,PAR_PAF,0000000); SET(KISAR7,PAR_PAF,0177600); - /* - * Now populate the page descriptor registers. See EK-KDJ1B-UG page 1-19 - * for details of each field. + /* + * Now populate the page descriptor registers. See EK-KDJ1B-UG page 1-19 + * for details of each field. */ uint16_t data = 0; SET(data,PDR_BYPASCACHE,0); @@ -42,10 +42,10 @@ init_mmu(void) KISDR6 = data; KISDR7 = data; - /* - * Enable the MMU with a 22-bit mapping. - */ - SET(MMR3,MMR3_KRNSPLTID,0); + /* + * Enable the MMU with a 22-bit mapping. + */ + SET(MMR3,MMR3_KRNSPLTID,0); SET(MMR3,MMR3_EN_22BIT,1); SET(MMR0,MMR0_EN_MMU,1); } -- 2.20.1