diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-02-18 12:51:18 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-02-18 12:52:29 -0500 |
commit | b7c3ef7ddee8e6c60e8f39ec7df28fc4ba5e5123 (patch) | |
tree | 2951977235457a8880588fd37204bcec5d780ed8 /docs/Memory_Model.md | |
parent | b16c7c460e42be6eee0ac4755b8645c18cf1bf96 (diff) | |
download | seabios-b7c3ef7ddee8e6c60e8f39ec7df28fc4ba5e5123.tar.gz |
docs: There is only one VAR16 flag now
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Memory_Model.md')
-rw-r--r-- | docs/Memory_Model.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Memory_Model.md b/docs/Memory_Model.md index 196b57ba..0668bd8f 100644 --- a/docs/Memory_Model.md +++ b/docs/Memory_Model.md @@ -160,7 +160,7 @@ There are several memory areas that the SeaBIOS "runtime" * 0x0F0000-0x100000: The BIOS segment. This area is used for both runtime code and static variables. Space is allocated in this region - by either marking a global variable with VARFSEG, one of the VAR16 + by either marking a global variable with VAR16, one of the VARFSEG flags, or by calling malloc_fseg() during initialization. The area is read-only at runtime and can be accessed from 16bit real mode, 16bit bigreal mode, 16bit protected mode, and 32bit segmented mode |