First page Back Continue Last page Graphics
Computing address for strings
One simple method is to assign each letter of the alphabet a number. Then you can treat string like numbers.
But strings like “STAR” and “RATS” will generally generate the same address.
One method of avoid this problem is to concatenate the “digits” of the string instead of adding them and apply the modulo tablesize function to the resulting number.