SD card reader for ZX81
- 1024MAK
- Posts: 5526
- Joined: Mon Sep 26, 2011 10:56 am
- Location: Looking forward to summer in Somerset, UK...
- Contact:
Re: SD card reader for ZX81
The main ZXpand+ listing is here. Register on the site and then use the “Notify When Back in Stock” button.
Mark
Mark
ZX81 Variations
ZX81 Chip Pin-outs
ZX81 Video Transistor Amp
Standby alert 
There are four lights!
Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb
Spring approaching...
ZX81 Chip Pin-outs
ZX81 Video Transistor Amp


There are four lights!
Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb

Spring approaching...
Re: SD card reader for ZX81
There is also renewed ZX1541 on the market which works with any SD2IEC well.
Claudius
----------
----------
Re: SD card reader for ZX81
Will it be good for zx80?
Re: SD card reader for ZX81
I ordered my ZX1541 a few weeks ago. It should arrive in a week or so! I plan on using one of my many real 1541 drives. lol. I have an SD2IEC and PI1541 available, but feel that actual floppies on the T/S 1000 would be awesome. I need to do a 16K internal mod on my main TS1000 before I jump into the ZX1541 interface.
- 1024MAK
- Posts: 5526
- Joined: Mon Sep 26, 2011 10:56 am
- Location: Looking forward to summer in Somerset, UK...
- Contact:
Re: SD card reader for ZX81
The ZX1541 that I ordered arrived on the 5th of February, but I have not yet had any time to play with it 
Mark

Mark
ZX81 Variations
ZX81 Chip Pin-outs
ZX81 Video Transistor Amp
Standby alert 
There are four lights!
Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb
Spring approaching...
ZX81 Chip Pin-outs
ZX81 Video Transistor Amp


There are four lights!
Step up to red alert. Sir, are you absolutely sure? It does mean changing the bulb

Spring approaching...
-
- Posts: 2256
- Joined: Sat Nov 26, 2016 2:42 am
Re: SD card reader for ZX81
A ‘spand has just come up on eBay but will doubtless go for silly money.
https://www.ebay.co.uk/itm/ZXpand-for-Z ... %7Ciid%3A1
https://www.ebay.co.uk/itm/ZXpand-for-Z ... %7Ciid%3A1
ZX80
ZX81 iss 1 (bugged ROM, kludge fix, normal, rebuilt)
TS 1000 iss 3, ZXPand AY and +, ZX8-CCB, ZX-KDLX & ChromaSCART
Tatung 81 + Wespi
TS 1500 & 2000
Spectrum 16k (iss 1 s/n 862)
Spectrum 48ks plus a DIVMMC future and SPECTRA
ZX81 iss 1 (bugged ROM, kludge fix, normal, rebuilt)
TS 1000 iss 3, ZXPand AY and +, ZX8-CCB, ZX-KDLX & ChromaSCART
Tatung 81 + Wespi
TS 1500 & 2000
Spectrum 16k (iss 1 s/n 862)
Spectrum 48ks plus a DIVMMC future and SPECTRA
Re: SD card reader for ZX81
The expansion options are awesome, but my dream is to have what looks like a microdrive but is really an SD reader. I'm on KS2 for a Next, but still like the old hardware to run my code on just to show myself it can.
Zeddy: ZX80, ZX81/ZXpand, TS1000/ZXpand, TS1500/Zxpand+,Printer
Speccy: 48k, +, +2, +3, TS2068, "Bare Metal" Pi, Next KS2, IF1/Microdrives/Vdrive/Light Gun/VGA-Joy
QL: Minerva/QL-VGA/Custom PSU
C5: 24v, LiFE battery, Disc brakes
Speccy: 48k, +, +2, +3, TS2068, "Bare Metal" Pi, Next KS2, IF1/Microdrives/Vdrive/Light Gun/VGA-Joy
QL: Minerva/QL-VGA/Custom PSU
C5: 24v, LiFE battery, Disc brakes
Re: SD card reader for ZX81
Hello community,
Some time ago I've developed a tiny file system and a SD card adapter for the ZX81. The goal was to avoid a extra processor like ATTINY and only depend on hardware that was already available back in the 80's (apart from the SD card itself). The project comes back to my mind because I've started some retro crafting with friends.
Maybe it will be of interest to one of you: https://github.com/sittner/tinyfs
There are some tests pending for an issue with HR graphics, which i hope to finish in the next few days.
Kind Regards
Sascha
Some time ago I've developed a tiny file system and a SD card adapter for the ZX81. The goal was to avoid a extra processor like ATTINY and only depend on hardware that was already available back in the 80's (apart from the SD card itself). The project comes back to my mind because I've started some retro crafting with friends.
Maybe it will be of interest to one of you: https://github.com/sittner/tinyfs
There are some tests pending for an issue with HR graphics, which i hope to finish in the next few days.
Kind Regards
Sascha
Re: SD card reader for ZX81
Hi Saschasittner wrote: ↑Mon Sep 09, 2024 8:01 pm Hello community,
Some time ago I've developed a tiny file system and a SD card adapter for the ZX81. The goal was to avoid a extra processor like ATTINY and only depend on hardware that was already available back in the 80's (apart from the SD card itself). The project comes back to my mind because I've started some retro crafting with friends.
Maybe it will be of interest to one of you: https://github.com/sittner/tinyfs
There are some tests pending for an issue with HR graphics, which i hope to finish in the next few days.
Kind Regards
Sascha
currently your diode D2 always enables the ZX81-rom during refresh. But then you cannot read HIRES data from ram, which also needs to be enabled during refresh (at it's own address). You should enable your own rom only during READ cycles at it's own address and the ZX8-rom only during REFRESH cycles at it's address (for access of the character generator in rom).
R5 is NOT needed for HIRES!
And to avoid a possible timing problem, you should not enable the ram's /OE and /CS at once. Enable /CS by the address decoder, /OE by (/RD AND /RFSH)
HTH Siggi
My ZX81 web-server: online since 2007, running since dec. 2020 using ZeddyNet hardware
http://zx81.ddns.net/ZxTeaM
http://zx81.ddns.net/ZxTeaM
Re: SD card reader for ZX81
Hi Siggi,
Many thanks for the suggestions.
I have already fixed the HRG issue (https://raw.githubusercontent.com/sittn ... e/zxsd.pdf). Now I've completely disabled the internal RAM/ROM and took nRFSH into account for generating the CS signals. The fixed PCBs are on the way and I will test them when they arrive.
R5 is a relic from an old circuit diagram and will be removed in the next revision.
You are right about the RAM OE. I am not happy with that either, but I ran out of gates and did not want to restructure the entire board to add just one AND. I like to try a diode logic solution (https://raw.githubusercontent.com/sittn ... e/zxsd.pdf). I don't really like that, but seems to be better than the old situation. I will patch the new boards and run a test....
Kind Regards
Sascha
Many thanks for the suggestions.
I have already fixed the HRG issue (https://raw.githubusercontent.com/sittn ... e/zxsd.pdf). Now I've completely disabled the internal RAM/ROM and took nRFSH into account for generating the CS signals. The fixed PCBs are on the way and I will test them when they arrive.
R5 is a relic from an old circuit diagram and will be removed in the next revision.
You are right about the RAM OE. I am not happy with that either, but I ran out of gates and did not want to restructure the entire board to add just one AND. I like to try a diode logic solution (https://raw.githubusercontent.com/sittn ... e/zxsd.pdf). I don't really like that, but seems to be better than the old situation. I will patch the new boards and run a test....
Kind Regards
Sascha