The consecutive numbers of all storage units in the memory are the "addresses" of the memory; in computers, the number of each storage unit is called the unit address. Since there are many storage units in the memory, in order to search, each storage unit needs to be assigned a memory address.
Memory address (Memory address) is the number of the storage unit in the memory. Since there are many storage units in the memory, in order to search, each storage unit needs to be assigned a memory address.
The memory address is the number of the storage unit in the memory. (Recommended learning: web front-end video tutorial)
Memory is composed of a large number of storage units, and each unit needs to be distinguished by number: number = address.
Each storage unit stores one byte of data:
One byte B (Byte) = 8 binary bits b (bit).
Address representation method
Use hexadecimal numbers to express addresses.
For example: Intel 8086 has a memory capacity of 1 megabyte (1MB)
Four hexadecimal numbers are commonly used to represent an address
The memory address is represented as: 0000H ~ FFFFH
where uppercase H (or lowercase h) represents a hexadecimal number
The above is the detailed content of What are the consecutive numbers of all storage units in the memory?. For more information, please follow other related articles on the PHP Chinese website!