So I am able to set up a bg map with data as opposed to sc saving which I don't care much for. But it only seems to read numbers. I can do it like this:
DATA " 111 " DATA " 121 " DATA " 121 " DATA " "But how do I get the code to read any symbol such as >?
DATA " 111 " DATA " 121> " DATA " 121@ " DATA " "The character code for > is 62 but I don't know how to get the code to read it in the data so it turns it into any bgtile I want Like this?
M=64 DIM MAP[M] FOR I=0 TO M-1 READ MAP[I] NEXT DA=0 D=VAL(A$[I]) BGPUT 1,I,DA,MAP[D] NEXT INC DA WEND DATA "111 " DATA "121> " DATA "111@ " DATA ""