this would kind of be useful for wordle games.
SO. when you put a column of sign thing in a set block it would just put a new src in that set block, same with the letter of sign.
EXAMPLE:
SET R0 sgn1.column 2
R0 = 84 104 105 115 32 105 115 32 97 32 116 101 115 116 32 121 97 121 33 33
now r0 would be set to that column but since you cant type letters in the registers or anywhere in code it would just type it as ascii.
ANOTHER EXAMPLE
SET sgn1.letter 20
R0 = 32
ALSOOO there would be a new code instruction called TRANSLATE
this would just translate ascii to
actual letters and set them to 3 new registers called:
TR0 TR1 TR2
AND ANOTHER EXAMPLE:
TRNSL R0 TR0
R0 : what to translate
TR0: the translated text of R_
AAAANDDD ANOTHER EXAMPLE:
EQUAL R0 TR0 TR1
IF R0 LABEL0
END
LABEL0
ADD win.pos.y win.pos.y 1
SET sgn1.num win.pos.y
END