Hello,
I'm working on a C++ application that executes binary files, so I'm using NASM to create them.
Example:
org 0 ; I don't know this value yet
start:
jmp start
Since I will execute that code later, I don't know the start address (ORG) at this time.
Is there any program that allows me to change the start address by patching the whole file afterwards?
Thanks in advance,
Phoenix10010