Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
hey, remember on intel, numbers are encoded with the least-significant byte first . so if you try to display 0x12345678 as a string (or if you look at it in memory), it will show as
0x78 0x56 0x34 0x12 ...