how do i save?

2 posts / 0 new
Last post
Offline
Last seen: 15 years 11 months ago
Joined: Mar 4 2008 - 09:22
Posts: 4
how do i save?

i want to write a text based adventure and am wondering how do i get it saved onto a disk? its a ][+ and i've got two drives if that makes a difference

Offline
Last seen: 8 years 5 months ago
Joined: Apr 10 2006 - 20:01
Posts: 1013
Are you writing it in BASIC?

Are you writing it in BASIC? And you're booting from a DOS diskette of some sort? If so, write your program and save it with:
SAVE FILENAME
replacing FILENAME with whatever you want to call it. You can then load it back up with:
LOAD FILENAME
or run it with:
RUN FILENAME
Here's a reasonable Applesoft/DOS reference:
http://www.landsnail.com/a2ref.htm

Log in or register to post comments