Page 29 of 29

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 16 Mar 2020 23:04
by Danoo
I am as keen as mustard, like the rest to build one of these terrific boards, but I am also on the same page as TF on a large sample of a untested altered design.
Happy either way, to test the new design or wait for the next batch :D

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 17 Mar 2020 09:39
by dalek
terriblefire wrote: 23 Feb 2020 17:52 1) 4K7 pull ups are needed on A31-A24 + A0 (as they can float).
So I thought why the hell not and added these using a SIL-10 resistor pack bodged on to those address lines on the CPU socket pulled up to Vcc.

Maybe it's placebo but my CPLD seems a bit cooler too - still the warmest thing on the board but I don't think as bad as before. Shame I don't have any way of measuring the temperature properly other than the frontier intro + pinky touch test.
tf536-pullups.jpg

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 17 Mar 2020 13:37
by matt020
I think shipping around the world is about to ground to a halt...?

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 17 Mar 2020 14:31
by theq
Transport of people, yes.
Transport of goods, no.

For now...

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 13 Apr 2020 19:22
by agranlund
terriblefire wrote: 15 Feb 2020 16:23 If i had a set of @agranlund's patches i could incoroprate those into the 536 build process and always produce an ST version.
It's all at https://github.com/agranlund/tf534
I am not terribly well versed with Github but if there's anything I can do to help produce the necessary diff/patches from that fork let me know :)

Cheers,
--Anders

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 13 Apr 2020 20:30
by terriblefire
agranlund wrote: 13 Apr 2020 19:22
terriblefire wrote: 15 Feb 2020 16:23 If i had a set of @agranlund's patches i could incoroprate those into the 536 build process and always produce an ST version.
It's all at https://github.com/agranlund/tf534
I am not terribly well versed with Github but if there's anything I can do to help produce the necessary diff/patches from that fork let me know :)

Cheers,
--Anders
How did you handle the fastram in there then? I'm curious how to make 64Mb fastram available on an ST.

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 13 Apr 2020 20:48
by PhilC
I'm planning to get my next 536 set up on an ST, so can test out the firmware etc if you guys need it.

Re: Limited TF536 Run - Sort of Sales (All gone)

Posted: 14 Apr 2020 06:55
by agranlund
terriblefire wrote: 13 Apr 2020 20:30 How did you handle the fastram in there then? I'm curious how to make 64Mb fastram available on an ST.
Atari 32bit FastRAM is at 0x01000000 onward (called TT-RAM in Atari lingo).
Just make sure it cannot read/write past your 64MB since the operating system(s) rely on getting a bus error at the end when probing how much FastRAM is installed.

EmuTos will pick up and use this RAM automatically.
Atari TOS does not unless the machine is an Atari TT - the only machine which officially had FastRAM, hence the need for additional "driver" (MAPROM takes care of this if needed)

This is what I did in autoconfig.v for the TF534:
assign DECODE[RAM_CARD] = ({A[31:22]} != {8'h01, 2'b00}) | shutup[RAM_CARD]; // 4MB TT-RAM

and likewise for the TF530:
assign DECODE[RAM_CARD] = ({A[31:21]} != {8'h01, 3'b000}) | shutup[RAM_CARD]; // 2MB TT-RAM