181
TI Z80 / Re: Seeker
« on: December 12, 2011, 09:48:29 pm »Sorry to be a super n00b, but what does >> mean? For example: X>>12. Also, I've never understood for loops, what are the 3 arguments?> works on only positive numbers.
>> works on positive and negative numbers.
in a for( loop, the 3 arguments are: first, the variable. second, the starting value of the variable, and third, the ending value of the variable.
for example:Code: [Select]:For(A,0,3) //loops through 4 times
:Disp A>Dec //displays the value of A (see how it changes?)
:End
Thank you SO much. I see now. Just one more question: How do people put huge graphics like 25x40 in their main screens? Like the logo and such. I only know how to do 8x8