0 Members and 1 Guest are viewing this topic.
i'm a total noob at axe and i need some help understanding pointers because pretty much can't do anything without them
thanks
1 --> {L1+2} //stores 1 to 2 bytes after L1 //now to check if that byte is 1:If {L1+2} = 1[insert code here]End
[0123456789ABCDEF00]->Str1.The contents of Str1 are placed somewhere in the program by Axe and the symbol Str1 becomes a pointer to the memory holding the first valueText(40,40,Str1>char.Since characters are hexadecimal, we can print the string.The pointer that is Str1 tells the text( directive to print the string starting from the address pointed to by Str1Text(40,40,Str1+4>char.We can also print only part of the string by adding 4 to the pointer. This means that that value Str1+4 points to the location four bytes after the location pointed to by Str1, which is partway through the string.
i know that but i want to be able to draw sprites