If anyone knows of a more appropriate place to post or receive answers to this...Please let me know.
I was just brought on to a project that will be patching software. The idea is to patch software
temporarily until the next build.
The patch will be loaded into some free memory and a jump instruction will be inserted in the main
application to call the new patch.
If I have a function foo() that needs to be patch (for whatever reason), I will code a new function
foo() and compile it. However, because I am replacing the function, I will still have to use the
addresses used in the original linking for variable references and function calls.
This is what I am looking for help on...How to link this new module.
Any help would be appreicated.
Thanks,
Bill