READ_ARBITRARY numberofbytes offset "variable" WRITE_ARBITRARY numberofbytes offset value
I.e if I wanted to read 16 bytes at 0x06 into the variable "info", then
READ_ARBITRARY 16 0x06 "info"
Or if I wanted to write 5 bytes at 0xA2
WRITE_ARBITRARY 5 0xA2 0x6400A4CC90
These functions can already be accomplished by using a series of READ/WRITEs at consecutive offsets, but these functions would make coding much easier.