Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > Can't the LOAD command be used in a basic program?
2007-04-18 20:22
Shadow
Account closed

Registered: Apr 2002
Posts: 355
Can't the LOAD command be used in a basic program?

1 LOAD"ROUTINE",8,1
2 SYS 49152
RUN

Ends up in a endless loop, so I guess it doesn't do what I expect it to do...

(This may seem stupid, but it would be very handy for me when crossdeving for the DTV, as I need to load the files from 64HDD all the time, with this I could just do "run" to load the lastest routine from disk and execute)
 
... 23 posts hidden. Click here to view all posts....
 
2007-04-20 09:53
Oswald

Registered: Apr 2002
Posts: 5020
now lets get back to topic, and some1 please explain why does the basic prg restart after using load, and why aren't the variables resetted.
2007-04-20 10:45
Devia

Registered: Oct 2004
Posts: 401
With danger of sounding very stupid, I quote the C64 Programmers Reference Guide:

"The LOAD closes all open files and, if it is used in direct mode, it performs a CLR (clear) before reading the program. If LOAD is executed from within a program, the program is RUN. This means that you can use LOAD to "chain" several programs together. None of the variables are cleared during a chain operation."

It would appear that LOAD in non-direct mode was intended only for breaking apart large BASIC programs.
I wonder if there is some smart POKE/SYS combo one could do to not make it RUN after loading, but navigating through the BASIC ROM quickly gets quite tiresome...
2007-04-20 11:35
Mace

Registered: May 2002
Posts: 1799
I think I found it...

At the end of the loading routine, at $E1B5, there's a JSR to $A68E. There the current character pointer is set to the first BASIC line. So when ending the LOAD command, the next command to be executed is the first one in the first BASIC line.

So, Devia, there's no way around it.
Both in direct and in basic mode, this routine is called.
In direct mode it's JSR'ed a bit earlier, together with the printing of "ready".
2007-04-20 12:14
Devia

Registered: Oct 2004
Posts: 401
Well, then you CAN do it..

10 POKE43,28
20 LOAD"FILE",8,1
30 POKE43,1
40 SYS4096

If you change the filename in the above, you just have to adjust the first POKE, in this case 28, to match the starting address of line 30

2007-04-20 13:05
Mace

Registered: May 2002
Posts: 1799
Devia, yeah, that works :)
So with some effort, it might be possible to calculate the pointers by using the value of 122 and 123 ($7A, $7B).

That would enable you to write a universal routine that works on any location within a basic program.
2007-04-20 14:10
Devia

Registered: Oct 2004
Posts: 401
something like:

10 POKE43,PEEK(123)+26+04
20 LOAD"CODE",8,1
30 SYS4096
40 POKE43,1

- where the '04' in line 10 just needs to be adjusted to the filename length.
Line 40 is not really necessary unless you want to be able to LIST/RUN/SAVE the program again.
..and it wouldn't work if line 10-30 crossed a page boundary of course.
2007-04-20 14:32
Mace

Registered: May 2002
Posts: 1799
Quote:
Line 40 is not really necessary unless you want to be able to LIST/RUN/SAVE the program again.

What if there's a GOTO ro GOSUB to lines prior to this LOAD part?

You could also scan for the POKE 43,1 (tokenised) around the calculated address to see where the line is exactly.
2007-04-20 19:23
iAN CooG

Registered: May 2002
Posts: 3135
quoting some FAQ file found on the net:

#9. To load a program from BASIC without re-run problems or tricky
variable/ongoto statements....

poke147,0
sys57812 "filename",8,1
sys62631

here's another method for data files:

following will work to read in everything except the first two bytes:

1000 SYS 57812 "NAME,S",8,0:REM SET PARAMETERS FOR LOAD
1010 POKE 193,L%:POKE 194,H%
1020 POKE 147,0:SYS 62631

L% is the low byte of the load address, and H% is the high byte, e.g.
H%= INT(address/256): L%=address-256*H%

POKEing a 0 into 147 performs a load; a 1 would perform a verify.
2007-04-20 21:34
Mace

Registered: May 2002
Posts: 1799
Quote:
1000 SYS 57812 "NAME,S",8,0:REM SET PARAMETERS FOR LOAD
1010 POKE 193,L%:POKE 194,H%
1020 POKE 147,0:SYS 62631

Why "name,s"....? What does the S do?
2007-04-20 21:47
tlr

Registered: Sep 2003
Posts: 1714
Quote: Quote:
1000 SYS 57812 "NAME,S",8,0:REM SET PARAMETERS FOR LOAD
1010 POKE 193,L%:POKE 194,H%
1020 POKE 147,0:SYS 62631

Why "name,s"....? What does the S do?


It loads a SEQ file instead of the default PRG.
Previous - 1 | 2 | 3 | 4 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
Dymo/G★P
apprentix
Asthor/Exlusive ON
Mike
Apollyon/ALD
Guests online: 164
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 Wonderland XIV  (9.6)
9 Memento Mori  (9.6)
10 Bromance  (9.5)
Top onefile Demos
1 It's More Fun to Com..  (9.7)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 TRSAC, Gabber & Pebe..  (9.5)
6 Rainbow Connection  (9.5)
7 Wafer Demo  (9.5)
8 Dawnfall V1.1  (9.5)
9 Quadrants  (9.5)
10 Daah, Those Acid Pil..  (9.5)
Top Groups
1 Nostalgia  (9.3)
2 Oxyron  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Coders
1 Axis  (9.8)
2 Graham  (9.8)
3 Lft  (9.8)
4 Crossbow  (9.8)
5 HCL  (9.8)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.055 sec.