Search found 1474 matches

by zephyr
Thu Dec 02, 2010 5:21 pm
Forum: Uploads
Topic: Breakout/Middle Kingdom
Replies: 24
Views: 12485

Re: Breakout/Middle Kingdom

Hi Mike,

The Hints and Tips forum is a new addition, so there's very little info there ATM. Did you try typing EXEC [ENTER], or RUN [ENTER] after loading?


Regards,
Steve
by zephyr
Thu Dec 02, 2010 5:18 pm
Forum: Hints and Tips
Topic: Utility for checking .CAS files
Replies: 16
Views: 9854

Re: Utility for checking .CAS files

Seems like it could be a handy little utility. I'm interested...

Regards,
Steve
by zephyr
Wed Dec 01, 2010 4:02 pm
Forum: Hints and Tips
Topic: Pause BASIC, and wait for key press without using INKEY$
Replies: 0
Views: 3318

Pause BASIC, and wait for key press without using INKEY$

This routine allows you to pause BASIC, and wait for a key press without using the INKEY$ function. The machine code routine is position independent, and DOS compatible. Three bytes ($00D5 - $00D7) are used by the program as follows. POKE213,0 (default) = Wait for key press POKE213,1 (or any other v...
by zephyr
Tue Nov 30, 2010 11:10 pm
Forum: Hints and Tips
Topic: Auto-run a BASIC program
Replies: 2
Views: 3211

Re: Auto-run a BASIC program

Here's an example of what to expect when you auto-run a BASIC program using the above methods. Attached is a copy of Mario Zamora's Flipper saved to cassette with Steve Woolham's BASIC AUTO-RUN V2.0, ERROR-RUN V1.0, and BREAK KEY DISABLE V1.0 routines. The BASIC source code is included. CLOADM to lo...
by zephyr
Sat Nov 27, 2010 11:21 pm
Forum: Discuss This Site
Topic: newbi signing in
Replies: 5
Views: 6195

Re: newbi signing in

Welcome to the forum.

Regards,
Steve
by zephyr
Sat Nov 27, 2010 6:10 pm
Forum: Hints and Tips
Topic: Restore to a line number
Replies: 5
Views: 4713

Re: Restore to a line number

This routine modifies the Dragon's original RESTORE command to optionally accept line numbers. The machine code routine is position independent, and DOS compatible. 10 'RESTORE-LINE-NUMBER V3.0 20 'FOR THE DRAGON 32/64 30 'BY STEPHEN J WOOLHAM 40 '*************************** 50 'BASIC EXAMPLE PROGRA...
by zephyr
Sat Nov 27, 2010 12:10 am
Forum: Hints and Tips
Topic: Restore to a line number
Replies: 5
Views: 4713

Re: Restore to a line number

Here's an alternative routine which utilises the CLS command to greatly improve execution speed of the BASIC program. The machine code routine is position independent, and DOS compatible. 10 'RESTORE-LINE-NUMBER V2.0 20 'FOR THE DRAGON 32/64 30 'BY STEPHEN J WOOLHAM 40 '*************************** 5...
by zephyr
Thu Nov 25, 2010 2:02 am
Forum: Hints and Tips
Topic: Restore to a line number
Replies: 5
Views: 4713

Re: Restore to a line number

The Dragon's RESTORE command can only restore the data pointer to the start of a BASIC program. You can't do the following. 10 RESTORE 200:READ A$ 20 RESTORE 300:READ B$ 30 RESTORE 100:READ C$ 40 PRINT A$;" ";B$;" ";C$ 50 END 100 DATA THREE 200 DATA ONE 300 DATA TWO Here's a quick example of how the...
by zephyr
Wed Nov 24, 2010 10:48 pm
Forum: Hints and Tips
Topic: Auto-run a BASIC program
Replies: 2
Views: 3211

Re: Auto-run a BASIC program

Here's an alternative method of auto-running a BASIC program. EDIT: Updated 2nd December, 05:15 pm First you must type in one of the following BASIC programs, RUN it, and save the machine code to cassette using the START, END, and EXEC addresses displayed on screen. e.g. Dragon: CSAVEM"ARUNDGN",1536...
by zephyr
Tue Nov 23, 2010 10:55 pm
Forum: Hints and Tips
Topic: Restore to a line number
Replies: 5
Views: 4713

Restore to a line number

This routine will allow you to restore to a line number. The machine code routine is position independent, and DOS compatible. 10 'RESTORE-LINE-NUMBER V1.0 20 'FOR THE DRAGON 32/64 30 'BY STEPHEN J WOOLHAM 40 '*************************** 50 'BASIC EXAMPLE PROGRAM 60 '*************************** 70 M...