A85: Reading Matrices


[Prev][Next][Index][Thread]

A85: Reading Matrices



Okay, I have a routine that reads GameBoard (which is a matrcie) which
looks like this

GameBoard:
	.db 0,1,0,1,0,1,0,1
	.db 1,0,1,0,1,0,1,0
	.db 0,1,0,1,0,1,0,1
	.db 3,0,3,0,3,0,3,0
	.db 0,3,0,3,0,3,0,3
	.db 2,0,2,0,2,0,2,0
	.db 0,2,0,2,0,2,0,2
	.db 2,0,2,0,2,0,2,0

Well, for some reason it is only reading the top line (I think!) and
it's not reading it correctly
the top line is
0,1,0,1,0,1,0,1
it's saying it's reading
0,1,0,1,0,1,2,1
what could be happening?

Thanks
John


Follow-Ups: