QUOTE(Raijinili @ Aug 8 2007, 10:20 AM)

No, you do this.
Say the word is "death".
Calculate the differences between the letters:
d
e = d+1
a = e-4
t = a+19
h = t-12
Then you write your OWN program to read the ROM. It reads the bytes one at a time. It first takes a byte, then checks if the byte after it is exactly one more than the first byte. If it is, then it checks that the byte after that is 4 less than the second. Then 19 more than the third, then 12 less than the fourth. If it gets this far, it will then spit out the address of the first byte. If not, it starts the process over with the second byte.
I get it. Thanks.