Skip to content

Instantly share code, notes, and snippets.

@intoinside
Last active November 16, 2022 21:32
Show Gist options
  • Save intoinside/d61e9f00ac312b869f506dcf443cf107 to your computer and use it in GitHub Desktop.
Save intoinside/d61e9f00ac312b869f506dcf443cf107 to your computer and use it in GitHub Desktop.
Basic program for sequential file write on disk, works on C128
1 rem write sequential data to disk with c128
10 dopen#1,"@seq test",w
20 for i=1 to 100
30 a$="record"+str$(i)
40 print#1,a$
50 print "writing ";a$
60 next
70 close 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment