View Single Post
  #3  
Old 30-04-2004, 04:13
Megalexxx Megalexxx is offline
Die Hard Member
 
Join Date: Mar 2002
Posts: 1,037
Thanks: 0
Thanked 5 Times in 2 Posts
Megalexxx is on a distinguished road
You can't simply add a byte, since you'll mess up with all the address in your file.

There might be a way if you manage to remove another byte near the one you want to add.
You have to study the code around, and (for example) if there's a "0900" code, you might be able to remove it (it's a NOP instruction).

BUT, this might also not work at all, since digits length are hardcoded. For example, an integer is coded on 2 bytes. If you need to code a value > 65535, you won't be able to do so, even if you add a byte, since the program will read only an integer (so the 1st 2 bytes...).

I need more explainations on what you want to do.
Reply With Quote