Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. short row ; row position
  2. short column ; column position
  3. short stride ; squares per row
  4. short square ; index of the square
  5.  
  6. Set stride to 16
  7. Set square to 68
  8.  
  9. while ( square >= stride )
  10. Set row to row + 1
  11. Set square to square - stride
  12. endwhile
  13.  
  14. Set column to square ; The column within the row
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement