reenabled swaptest. quake should now load data and start on big endian architectures...
[AROS-Contrib.git] / regina / arexx_test / ptrarith.rexx
blob66b39bc8b5ec1c92774ee61c3ff5a19823782803
1 /* Some pointer arithmatic operations */
2 p = null()
3 say c2x(p)
4 p = offset(p,4)
5 say c2x(p)
6 say c2x(baddr(p))