Table of Contents

About

When employing the processor’s memory management facilities, programs do not directly address physical memory.

Instead, they access memory using one of three memory models:

The linear address space can be paged when using the flat or segmented model.

Models

Flat

In the Flat memory model, Memory appears to a program as a single, continuous address space This space is called a linear address space.

The flat memory model is also known as the unsegmented model.

Code, data, and stacks are all contained in the same address space, the linear one

Cpu Memory Management Flat Model

Segmented

In a segmented memory model, Memory appears to a program as a group of independent address spaces called segments. See Memory - Segment

Cpu Memory Management Segmented Model

Real

The Real-address mode memory model is the memory model for the Intel 8086 processor. It is supported to provide compatibility with existing programs written to run on the Intel 8086 processor.

It's a very old model.

Documentation / Reference