Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a paragraph (when referring to memory)

I feel silly for asking something that seems like it should be so easy to look up, but as you might guess, searching for paragraph gets a lot results that have nothing to do with what I want to know.

I've been learning assembly these past few days (writing a tiny bootloader, that sort of practice stuff) and I've seen a few references to chunks of memory called a paragraph. I have a distant memory that a paragraph is two words, but I'm really not sure. What exactly is a paragraph and what is its significance?

like image 590
cost Avatar asked May 17 '11 05:05

cost


1 Answers

A paragraph is 16 bytes. It's relevant primarily (if not exclusively) in x86 real mode, where it's the distance between two addresses you get when you increment/decrement a segment register by one.

like image 110
Jerry Coffin Avatar answered Sep 17 '22 20:09

Jerry Coffin