2011-03-29, 07:24 PM
This works:
This does not:
This would work in other dialects.
Thanks,
Darkstar
Code:
For i = AttrAddress to AttrAddress + NumberOfCells - 1
Poke i, AttrColor
Next iThis does not:
Code:
For AttrAddress = AttrAddress to AttrAddress + NumberOfCells - 1
Poke AttrAddress, AttrColor
Next AttrAddressThis would work in other dialects.
Thanks,
Darkstar

