aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <kwojtus@protonmail.com>2020-01-20 14:54:49 +0100
committerWojtek Kosior <kwojtus@protonmail.com>2020-01-20 14:54:49 +0100
commit79f4ccc10510d9ba29bad6f233ef6e9d3a7939bc (patch)
tree77c5864e26e1cd68b355f817ad5df335661405d1
parent423b745282c2a0cc741c465d2783bf2c960f4cb7 (diff)
downloadrpi-MMU-example-79f4ccc10510d9ba29bad6f233ef6e9d3a7939bc.tar.gz
rpi-MMU-example-79f4ccc10510d9ba29bad6f233ef6e9d3a7939bc.zip
fix a typo
-rw-r--r--docs/MMU-explained.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/MMU-explained.txt b/docs/MMU-explained.txt
index a26c670..ae2fe83 100644
--- a/docs/MMU-explained.txt
+++ b/docs/MMU-explained.txt
@@ -75,7 +75,7 @@ As of 15.01.2020 page tables and small pages are not used in the project (althou
### Project specific info
-Despite the overhelming amount of configuration options available, most can be left deafult and this is how it's done in this project. Those default settings usually make the MMU behave like it did in older ARM versions, when some options were not yet available and hence, the entire system was simpler.
+Despite the overwhelming amount of configuration options available, most can be left deafult and this is how it's done in this project. Those default settings usually make the MMU behave like it did in older ARM versions, when some options were not yet available and hence, the entire system was simpler.
Our project uses C bitfield structs for operating on SCTLR and TTBCR contents and translation table descriptors. With DACR - bit shifts are more appropriate and with TTBCR - our default configuration means we're writing '0' to that register. This is an elegant and readable approach, yet little-portable across compilers. Current struct definitions work properly with GCC.