i was wondering if there was a way to take all of the memory from an array and put it on the screen directly. I have an array declared as
dim vscreen%(3200)
and i edit the memory in the array like
def seg=varseg(vscreen%)
poke varptr(vscreen%)+x+(y*320),col
def seg
where x and where are the coordinates of the point and col is the color. I was wondering if there was a way to take all of the memory from that array and put it directly on the moniter.
dim vscreen%(3200)
and i edit the memory in the array like
def seg=varseg(vscreen%)
poke varptr(vscreen%)+x+(y*320),col
def seg
where x and where are the coordinates of the point and col is the color. I was wondering if there was a way to take all of the memory from that array and put it directly on the moniter.