I think I've seen an ST506 back in the day... but for the most part, I was playing with ST-225's on PDP's.? 20Meg was very nice but still not enough for any large systems.
For the big 8Meg disks, I go with 64 sectors then lay out the maximum block to get 8meg without going over 65536 CP/M sectors.??
For the boot disk, 1 reserve 1 track.?
I have an updated Z80MC_GO to load 59K CP/M instead of 61K.? I needed the extra 2K for the large disk allocation maps.? 512bytes times 4 disks.
The CP/M BIOS is in Z80MC_GO.? It will load CCP and BDOS from the disk... so the disk must have CP/M (assembled for 59K).
It would have definitely been a lot easier if I created my own format on the SD Card and even tossed away 3/4 of the disk sectors (ie, use the first 128 bytes of each 512 byte SD CARD sector).
But I kind of liked the idea of working within a FAT16 file that can later be tossed around in Windows.??
Converting 512 byte SD Card sectors to CP/M 128 byte sectors was a real challenge for me.? Great thought process.
So you read in the 512 bytes and use 1/4 of that buffer to return to CP/M.? Of course, CP/M is very likely going to ask for the next sector and sure enough, it's already there in RAM.
When CP/M asks for another sector that's not there in RAM, it's time to read the next SD Card sector... but wait... did CP/M change any data in those sectors?? If so, we better write that before reading the next SD Card Sector.? Now, what if CP/M wants to write to a sector that's not yet in RAM, well, it needs to be read first.? Yeah, sort story, I had to write my own data caching logic.? Fun stuff.
Cheers,
Josh