Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Memory addresses"
From NetSec
(8 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | Memory addresses are typically a 32-bit or 64-bit hexadecimal number referring to a region of | + | Memory addresses are typically a 32-bit or 64-bit [[hexadecimal]] number referring to a region of random access memory ('''[[ram|RAM]]'''). |
− | [[Category: | + | |
+ | This is what is typically contained by an "Absolute Pointer" or "Absolute Address", however "Virtual Memory Addresses" exist as well on a per-process context basis within a given process' runtime environment. | ||
+ | |||
+ | Related: | ||
+ | * [[return address]] | ||
+ | * [[Assembly#Memory_Addressing|memory addressing in assembly]] | ||
+ | |||
+ | [[Category:Glossary]] |
Latest revision as of 19:57, 28 November 2012
Memory addresses are typically a 32-bit or 64-bit hexadecimal number referring to a region of random access memory (RAM).
This is what is typically contained by an "Absolute Pointer" or "Absolute Address", however "Virtual Memory Addresses" exist as well on a per-process context basis within a given process' runtime environment.
Related: