Release

BULK DATA SAVE example

2

was8bit 2023-08-30 11:32 (Edited)

This shows how to access your file data that the BULK DATA SAVE converted to...


was8bit 2023-08-30 11:36 (Edited)

An example for randomly retrieving one piece of data at a time...

M=ROM(12)
S=SIZE(12)

NEW_WORD:
W=RND(S/4)
W$=""
FOR II=0 TO 3
P=PEEK(M+W*4+II)
W$=W$+CHR$(P)
NEXT II
PRINT W$


Log in to reply.