Advanced SYS: how to set parameters for ML routines
Forum rules
Post guides, tutorials, and other instructional content here.
This topic area requires approval, so please be patient while we review content to make sure it fits the expectations for this topic area.
Tech support questions should be asked in Hardware or Software support.
Post guides, tutorials, and other instructional content here.
This topic area requires approval, so please be patient while we review content to make sure it fits the expectations for this topic area.
Tech support questions should be asked in Hardware or Software support.
Advanced SYS: how to set parameters for ML routines
A lot of the ML routines that we can access with the SYS command actually require the Accumulator, X, Y, or flags to be set to specific values. As it turns out, the BASIC SYS command actually has a way to pre-load these values into the CPU registers, as well as a way to read these back after the routine exits.
These values are stored in $30C-30F, like this:
780/$30C: Accumulator
781/7$30D: X register
782/$30E: Y register
783/$30F: Status Register/Flags
So if you wanted to call a routine like PLOT, which moves the cursor to column Y and row X, you'd set the registers like this:
POKE 781, 10
POKE 782, 5
POKE 783, 0 : REM Clear the flags
SYS 65520
This will place the cursor on row 10, column 5.
Or, if you wanted to read the cursor position, you can set the carry flag:
POKE 783,1
SYS 65520
X = PEEK(781)
Y=PEEK(782)
And yes - the X and Y are backward. The X register stores the row and Y stores the column. It probably has something to do with certain addressing modes only being available to the X register and others only being available to the Y register...
Of course, the Commander has the LOCATE command, but if you're coding for BASIC 2 (C64, PET, etc), then this is the way to directly position the cursor.
Another one that I find useful is the "stuff the keyboard" API:
This will print the appropriate commands, then position the cursor so that two presses of the RETURN key loads and runs the next program. And since the keyboard buffer conveniently has two CRs in it, your next program will run.
Here's the output (assuming F$(C) is TREK.PRG):
Advanced SYS: how to set parameters for ML routines
I'm a bit familiar with the PLOT function. ? I may have mentioned it here on this forum once or twice...
But the keyboard stuff is quite interesting. I've seen it done many times; rarely have I seen an explanation.
Advanced SYS: how to set parameters for ML routines
On 5/18/2022 at 8:18 AM, kelli217 said:
But the keyboard stuff is quite interesting. I've seen it done many times; rarely have I seen an explanation
Thanks.
Michael recently added the API to make it possible to do this. On the C64 (and prior to the API on the X16), you have to directly manipulate the keyboard buffer. That approach works fine when the buffer is in a known location, but the X16's ROM is still evolving, so the address of the keyboard buffer could change.
On the 64, you'd do something like this:
POKE 631,13 : POKE 632,13 : POKE 198,2
Locations 631-640 are the buffer itself (there's room for 10 keypresses), and the data at 192 is the length of the buffer. By setting that to 2, this causes the computer to process the first two values in the buffer.
This technique would be basically the same on the X16, but since a bunch of things have changed locations, we can't count on the keyboard buffer being in one place. Hence the published API that pushes keys into the buffer. (I suspect the API was always there, just "unpublished".)
Advanced SYS: how to set parameters for ML routines
Can I use PLOT to position the cursor and then use a PRINT to print the text at that position?
What I'm seeing is that I can set the Row, but the column is reset before I do the PRINT:
10 POKE $30C, 30 :REM ROW = 30
20 POKE $30D, 40 :REM COL = 40
30 POKE $30E, 0 :REM CLEAR FLAGS
40 SYS $FFF0 :REM PLOT
50 PRINT "HELLO THERE" :REM PRINTS AT ROW 30 COL 0
- desertfish
- Posts: 1095
- Joined: Tue Aug 25, 2020 8:27 pm
- Location: Netherlands
Advanced SYS: how to set parameters for ML routines
yeah I can reproduce this , this somehow doesn't work as advertised.
The obvious fix is to just use the LOCATE x,y command . But should the above not work as well?
Advanced SYS: how to set parameters for ML routines
Yeah, I know why. Something got jumbled up somewhere. The order of registers for making a SYS call is A, X, Y, SR for $30C through $30F; Tom's original post has them all rotated.
Advanced SYS: how to set parameters for ML routines
On 5/19/2022 at 2:46 PM, rje said:
Can I use PLOT to position the cursor and then use a PRINT to print the text at that position?
What I'm seeing is that I can set the Row, but the column is reset before I do the PRINT:
10 POKE $30C, 30 :REM ROW = 30
20 POKE $30D, 40 :REM COL = 40
30 POKE $30E, 0 :REM CLEAR FLAGS
40 SYS $FFF0 :REM PLOT
50 PRINT "HELLO THERE" :REM PRINTS AT ROW 30 COL 0
Sorry... I looked this up on one of the Commodore 64 Wikis, which didn't spell it out very clearly, so I got the order wrong.
I've fixed the Wiki entry and my examples above (with screen shots showing actual code and program runs).
https://www.c64-wiki.com/wiki/SYS#Passing_parameters_via_registers
-
- Posts: 140
- Joined: Tue Jul 21, 2020 10:08 pm
Re: Advanced SYS: how to set parameters for ML routines
For some reason the graphics posted in the original pst are no longer available.
Could somebody repost them please?
Cheers!
Could somebody repost them please?
Cheers!
Re: Advanced SYS: how to set parameters for ML routines
Those examples are all out of date, for one reason or another... I'll work up some new examples. If I don't have them in a couple of days, remind me.
Re: Advanced SYS: how to set parameters for ML routines
Those examples are all out of date, for one reason or another... I'll work up some new examples. If I don't have them in a couple of days, remind me.