x86 - What does ORG Assembly Instruction do? -
Can someone give me a comprehensive description of ORG instructions?
When and why is the application used in the written assembly?
Use Nasm on x86 or AMD64.
ORG is used to set up embballation location counter The link can be in a load address or at time. It can be used to define the full address, e.g. When defining something like vectors that are required to be at a certain address, or can be used to present padding or to generate specific alignment for the following code.
Comments
Post a Comment