So I have a board game and the user is expected to enter the size of the board 3,4,5 ...will be 3x3, 4x4, 5x5, etc...
Here:
board: .word 0:100 # declare a board of size 100 and make ints '0' , O = 1, X = 2
As you can see, this is static declaration...I need to somehow make an array the SIZE of the user input found in t0 for example...