source: rtems/doc/supplements/m68k/memmodel.t @ ae68ff0

4.104.114.84.95
Last change on this file since ae68ff0 was ae68ff0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/27/97 at 12:40:11

Initial revision

  • Property mode set to 100644
File size: 1.9 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-1996.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6
7@ifinfo
8@node Memory Model, Memory Model Introduction, Calling Conventions User-Provided Routines, Top
9@end ifinfo
10@chapter Memory Model
11@ifinfo
12@menu
13* Memory Model Introduction::
14* Memory Model Flat Memory Model::
15@end menu
16@end ifinfo
17
18@ifinfo
19@node Memory Model Introduction, Memory Model Flat Memory Model, Memory Model, Memory Model
20@end ifinfo
21@section Introduction
22
23A processor may support any combination of memory
24models ranging from pure physical addressing to complex demand
25paged virtual memory systems.  RTEMS supports a flat memory
26model which ranges contiguously over the processor's allowable
27address space.  RTEMS does not support segmentation or virtual
28memory of any kind.  The appropriate memory model for RTEMS
29provided by the targeted processor and related characteristics
30of that model are described in this chapter.
31
32@ifinfo
33@node Memory Model Flat Memory Model, Interrupt Processing, Memory Model Introduction, Memory Model
34@end ifinfo
35@section Flat Memory Model
36
37The MC68xxx family supports a flat 32-bit address
38space with addresses ranging from 0x00000000 to 0xFFFFFFFF (4
39gigabytes).  Each address is represented by a 32-bit value and
40is byte addressable.  The address may be used to reference a
41single byte, word (2-bytes), or long word (4 bytes).  Memory
42accesses within this address space are performed in big endian
43fashion by the processors in this family.
44
45Some of the MC68xxx family members such as the
46MC68020, MC68030, and MC68040 support virtual memory and
47segmentation.  The MC68020 requires external hardware support
48such as the MC68851 Paged Memory Management Unit coprocessor
49which is typically used to perform address translations for
50these systems.  RTEMS does not support virtual memory or
51segmentation on any of the MC68xxx family members.
52
Note: See TracBrowser for help on using the repository browser.