0 Members and 2 Guests are viewing this topic.
It doesn't necessarily need to be Quigibo who has to do it. There are a lot of people here who could explain it in great detail. Personally, I would do it if I knew more about them (and Axe in general).
ClrHomesub(SHReturnLbl SHDisp "Hello World!"
[0102030405060708->Pic1Pt-On(0,0,Pic1
silly math errors
Reader's Digest:Well, in base 10, you go from 0-9. In hex, you go from 0-F. (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F). All data is stored as a single byte. A byte is a pair of hex digits: 00 is 0, 0A is 10, FF is 256. <- Recognize that number? It's the maximum value of a byte. A word is a pair of bytes, like BB6D.