QUADs are just 8 bytes in memory and are a standard Intel data type, usually handled by the FPU in PB, but you probably don't need to know that.
Intel data types are little endian, lowest byte is in lowest address.
You can access them using pointers like any other data type:
Code:
a&&=&h1234567890123456 'a QUAD dim p as byte ptr p=varptr32(a&&) 'pointer to the bytes in that QUAD for r& = 7 to 0 step-1 print right$("0"+hex$(@p[r&]),2);" "; next print
Don't know. Why can't you?
Paul.
------------------
Leave a comment: