Posted: 05:44pm 24 Dec 2024 |
Copy link to clipboard |
 Print this post |
|
I thought I knew how to do binary IO, but I guess not.
This simple program:
option default integer option base 1
const BLEN = 10 const DSIZE = BLEN*64
dim b(BLEN) = (0, 1, 2, 3, 4, 5, 6,7 ,8 ,9) save data "bfile.bin" peek(VARADDR, b()), DSIZE end
..dies with 'address error'.
I am sure many of you can and will point out the noob error. Thanks! -Bill |