aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-07-11 13:35:40 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-09-02 21:38:31 -0400
commit828af21d3ec33a67251a4dd3aa5751dc6e8ccf16 (patch)
treee83f43b3d2e54ec70baa376a097c55239ca1a053 /docs
parentef5fdc99b771349264b4ba0aac1c654c8789386f (diff)
downloadseabios-hppa-828af21d3ec33a67251a4dd3aa5751dc6e8ccf16.zip
seabios-hppa-828af21d3ec33a67251a4dd3aa5751dc6e8ccf16.tar.gz
seabios-hppa-828af21d3ec33a67251a4dd3aa5751dc6e8ccf16.tar.bz2
docs: Fix typos in Memory_Model.md
Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r--docs/Memory_Model.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/Memory_Model.md b/docs/Memory_Model.md
index 0668bd8..1ebe865 100644
--- a/docs/Memory_Model.md
+++ b/docs/Memory_Model.md
@@ -192,7 +192,7 @@ There are three low-level memory access macros:
* GET_FARVAR / SET_FARVAR : Assigns the extra segment (%es) to the
given segment id and then performs the given memory access via %es.
-* GET_FLATVAR / SET_FLATVAR : These macros take a 32bit pointer,
+* GET_FLATPTR / SET_FLATPTR : These macros take a 32bit pointer,
construct a segment/offset pair valid in real mode, and then perform
the given access. These macros must not be used in 16bit protected
mode or 32bit segmented mode.
@@ -209,11 +209,11 @@ macros are also available.
* GET_LOW / SET_LOW : Access internal variables marked with
VARLOW. (There are also related macros GET_LOWFLAT / SET_LOWFLAT for
- accessing storage allocated with malloc_low).
+ accessing storage allocated with malloc_low.)
* GET_GLOBAL : Access internal variables marked with the VAR16 or
VARFSEG flags. (There is also the related macro GET_GLOBALFLAT for
- accessing storage allocated with malloc_fseg).
+ accessing storage allocated with malloc_fseg.)
Memory available during initialization
======================================