Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
! ,-- move bottom 8 bits to the top
! | ,-- move top 8 bits to the bottom
y = ior(ishft(iand(x, 255), 8), ishft(x, -8))
!
! print numbers in hex to ensure byteswap
print '(I6, 1X, Z4, 1X, I6, 1X, Z4)', x, x, y, y