Page 1 of 1

Re: 128k paging BASIC loader

Posted: Fri Dec 08, 2017 6:46 pm
by Seven.FFF
Ast A. Moore wrote: Fri Dec 08, 2017 6:37 pm However, if you OUT 32765,17: POKE 23388,17, it’ll page in bank 1 and reset into 48K BASIC, and the bank will stick.
So it does!

Is there a magic way to:
  • be in 128K basic
  • run a program
  • call m/c from the program
  • in that machine code, do the m/c equivalent of OUT 32765,17: POKE 23388,17
  • Frig the sysvars and stack (somehow) to...
  • return to 48K basic, with your program still running, without resetting?

Re: 128k paging BASIC loader

Posted: Fri Dec 08, 2017 7:46 pm
by Woodster
Seven.FFF wrote: Fri Dec 08, 2017 3:18 pm Does Woody's technique stop BASIC changing the top bank back to bank 7, then?
Works fine with the stack in a safe place for paging.

Check out Amaurote's BASIC loader (128K version obviously!) :)

Edit: The bank won't stick if you return to the 128 editor. My original post in this thread was really a suggestion for line 20 of that specific program :)

Re: 128k paging BASIC loader

Posted: Fri Dec 08, 2017 8:59 pm
by Ast A. Moore
Seven.FFF wrote: Fri Dec 08, 2017 6:46 pm Is there a magic way to:
  • be in 128K basic
  • run a program
  • call m/c from the program
  • in that machine code, do the m/c equivalent of OUT 32765,17: POKE 23388,17
  • Frig the sysvars and stack (somehow) to...
  • return to 48K basic, with your program still running, without resetting?
That’s a tall order, brother!

Okay, so let’s doodle a bit:

Code: Select all

	ld a,(23388)	;fetch current value
	and %11111000	;clear bits 0–2 (bank #)
	or 1		;select new bank
	ld bc,32765	;our port
	di		;condom on
	ld (23388),a	;write new value back to sys. var
	out (c),a	;and to port
	ei		;condom off
	ret		;we should be back in BASIC now
This ought to cover everything except
Seven.FFF wrote: Fri Dec 08, 2017 6:46 pm
  • return to 48K basic, with your program still running, without resetting?
Then again, I’m not sure why you’d want to do that. If you wanted to prevent further bank switching, you could simply set bit 5, but I presume you’re after something else.

Oh, yeah, and as Mark says, mind the ga— I mean, the stack.

Re: 128k paging BASIC loader

Posted: Fri Dec 08, 2017 9:03 pm
by R-Tape
Just wanted to say thanks all, I'll get the content finished and see if I can use this advice over the weekend.

I'd also like to prove I have tried! I have old notes, and today I added one:

Image

BTW - The main file is too big compressed and spills over 49152, so a simple one load is out. Though I did learn today that zx7 compresses more than just screens!

Re: 128k paging BASIC loader

Posted: Sat Dec 09, 2017 12:31 pm
by AndyC
R-Tape wrote: Fri Dec 08, 2017 12:47 pm This is the scenario:

Stack below 24064, main code fills 24064 up to the top, including vector table at 65024 in main (=bank 0?) filled with db 253, JPs to interrupt routine at 32768.

Interrupt routine will page in bank 1, call AY music there, then page bank 0 back in.
If you're using an original 128 or +2 that can crash the machine as I will be pointing at contended RAM in the upper 16K, which triggers a hardware bug.

Re: 128k paging BASIC loader

Posted: Sat Dec 09, 2017 6:23 pm
by andydansby
The Mojon Twins have a 128k loader that I use in Xelda.

Code: Select all

; Relocator by Benway

org 25000
memory_to_change defb 0
org 25002

ld a, (memory_to_change)
ld b, a

ld A, (#5B5C)   ; in 5B5C is the current memory page
and #F8
or b
ld (#5B5C), A   ; you have to preserve it, or the BASIC goes crazy

ld BC, #7FFD
out (C), A

ld hl, 32768
ld de, 49152
ld bc, 16384   
ldir      ; we copy 16k from 32768 to 49152 (on the correct page)

; here you go back to 0


ld A, (#5B5C)
and #F8
ld (#5B5C), A

ld BC, #7FFD
out (C), A

ret

Code: Select all

10 BORDER NOT PI:PAPER NOT PI:INK NOT PI:CLEAR VAL "24199": LET D=VAL"25000":LET E=D+2:LOAD""SCREEN$:POKE VAL"23739",CODE"o":LOAD""CODE:LOAD""CODE:POKE D,VAL"1":RANDOMIZE USR E:LOAD""CODE:POKE D,VAL"3":RANDOMIZE USR E:LOAD""CODE:POKE D,VAL"4":RANDOMIZE USR E:LOAD""CODE:POKE D,VAL"6":RANDOMIZE USR E:LOAD""CODE:POKE D,VAL"7":RANDOMIZE USR E:LOAD""CODE:RANDOMIZE USR VAL"24200"
The first assembly part is loaded in after the screen$, followed by the game data in 16k blocks for each of the RAM banks, finally switching in the main RAM loading in 36k

Andy Dansby

Re: 128k paging BASIC loader

Posted: Sat Dec 09, 2017 10:14 pm
by R-Tape
Hikaru, you have a PM!

Re: 128k paging BASIC loader

Posted: Sun Dec 10, 2017 3:55 pm
by Seven.FFF
Thanks Andy. I’m playing around with your Mojon loader adapting it to TR-Dos.

Re: 128k paging BASIC loader

Posted: Sun Dec 10, 2017 7:04 pm
by Ast A. Moore
Seven.FFF wrote: Sun Dec 10, 2017 3:55 pm Thanks Andy. I’m playing around with your Mojon loader adapting it to TR-Dos.
Seems a little convoluted to me, switching back and forth between BASIC and custom machine code. Like I said earlier,
Ast A. Moore wrote: Fri Dec 08, 2017 1:21 pm I recommend you write a small MC loader and stick it into BASIC. Then run the whole thing with RANDOMIZE USR (PEEK 23635+256*PEEK 23636+5).
NOTE: This is important, because TR-DOS reserves 112 bytes for its variables before the beginning of the BASIC program, so you need to fetch the start address from the PROG system variable (as it won’t be 23755). It’s generally good advice, because some other peripherals might change that value as well.

Re: 128k paging BASIC loader

Posted: Sun Dec 10, 2017 7:45 pm
by Seven.FFF
Ast A. Moore wrote: Sun Dec 10, 2017 7:04 pmSeems a little convoluted to me, switching back and forth between BASIC and custom machine code.
Ast A. Moore wrote: Sun Dec 10, 2017 7:04 pm NOTE: This is important, because TR-DOS reserves 112 bytes for its variables before the beginning of the BASIC program, so you need to fetch the start address from the PROG system variable (as it won’t be 23755). It’s generally good advice, because some other peripherals might change that value as well.
You could well be right - I;m still fiddling with everything. Cheers for the tip :)

Re: 128k paging BASIC loader

Posted: Wed Jul 01, 2020 5:11 am
by XoRRoX
And... it is alive! :) ;)

Sorry for reviving this old thread but as it's so related to its contents, it seemed more appropriate than creating a new one.

As a novice in 128 banks, it took me quite a while to understand that Bank 0 is the default one (with ROM1) activated by poke 23388,16(?).

Now, in several places I've seen this method used to switch banks in BASIC:

Code: Select all

POKE 23388,17: OUT 32765,17

but it seems to also work without the OUT. This code with only using the POKE seems to work:

Code: Select all

10 CLEAR 49151
20 POKE 49152,255
30 PRINT PEEK 49152
40 POKE 23388,17
50 PRINT PEEK 49152
60 POKE 23388,16
70 PRINT PEEK 49152
and outputs:

Code: Select all

255
0
255
Is there a reason for also using the OUT?

Re: 128k paging BASIC loader

Posted: Wed Jul 01, 2020 8:36 am
by Nienn Heskil
This sort of POKE relies on the 128K BASIC ROM to do the paging OUTs, and that might not be enabled at all times. For instance, there's such a thing as the 'USR0 mode', i.e. resetting to BASIC 48 while leaving the 128K paging port active. In that case, this method will not work. 'USR0 mode' is sometimes set by default by TR-DOS 'boot' launcher programs among other things (perhaps some peripherals as well) since it's more compatible. So, I think it's a good idea to keep the OUTs to make sure.

Re: 128k paging BASIC loader

Posted: Wed Jul 01, 2020 9:27 am
by XoRRoX
[mention]Nienn Heskil[/mention]

Thanks for the explanation. So it's to keep it wider compatible.
USR0 is also used by all divMMC devices.

Thanks again :)

Re: 128k paging BASIC loader

Posted: Wed Jul 01, 2020 3:49 pm
by AndyC
Technically the POKE doesn't do anything. If BASIC runs fast enough, the next instruction will access unpaged memory (though that is unlikely given the speed of Sinclair BASIC). The OUT actually pages the memory, but there is a caveat. The ROM will cut in at various points and rearrange memory as the system requires it.

The system variables that get POKEd are where the OS keeps track of what the memory should be restored to (in essence the "current" memory paging). So if you just did the OUT without the POKE, the chances are something will come along and reset the paging back to how it was "supposed" to be.

Re: 128k paging BASIC loader

Posted: Wed Jul 01, 2020 4:26 pm
by Seven.FFF
And it's like this because you can't read back the current page with IN on any Spectrum model. In fact on some models, even trying to read it crashes the machine. So the last OUTed value has to be shadowed in RAM so the ROM can do its "change page/do stuff/restore page" activities.