Hi All,
There’s a listing on eBay.com item number 205109638823 for a “Vintage Rare Retro Intel Multibus MDS Double Density Floppy Drive Controller CDC”
It is however a Single Density Controller which looks to be in good condition.
Possibly the Channel Board from the same seller under item number 205109643837 for a “Vintage Rare Intel Multibus MDS Floppy Drive Controller Channel PWA 1000467 75'”
The issue with this is there are no firmware roms although these are on Bitsavers and one of the Bit Slice Processor set is missing as well.
Bye
Martyn.
Hi Scott,
You could use the SBC-201 board set, however this is single density and fairly rare these days. Most of the software images are for SBC-202 Double Density set and this is what I would recommend.
For some pointers see Bill’s excellent write up here:
https://www.nj7p.info/Computers/Multibus/Restoration/CaseStudy-MDS_225.html
Bill is actually using a single board Zendex controller here, but the SBC-202 set will be fine.
If you need specific part numbers etc let me know.
There’s a fair bit of info on my Youtube Channel if you are interested “Martyn's Vintage Computing”
Thanks
Martyn.
--
You received this message because you are subscribed to the Google Groups "intel-devsys" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
intel-devsys...@googlegroups.com.
To view this discussion visit
https://groups.google.com/d/msgid/intel-devsys/a4d6b678-6b5b-45c7-9289-572ca595133dn%40googlegroups.com.
--
Scott
ISIS I through ISIS III support 8” disks and ISIS PDS supports 5 ¼” disks. The physical layout formats are documented in
https://mark-ogden.uk/idkstool.html#interleave
Single Density 8” disks have 26x128 FM sectors per track
Double Density 8” disks have cylinder 0 as 26x128 FM Sectors the rest are 52x128 FM sectors per track
Both have 77 tracks and are single sided
The ISIS Directory is located at Cylinder 1 sector 1
Note ISIS III could also support NDS-II which allowed remotely mounted files and a hierarchical file structure
5 ¼” disk for the PDS have cylinder 0, head 0 as 16x128 FM sectors, the rest are16x256 MFM sectors. In total there are 40 cylinders and the disk is double sided.
The ISIS-PDS directory is located at Cylinder 39, head 0, sector 1
Note iPDS also supports bubble memory!!
See pages 8-88 onwards in https://mark-ogden.uk/files/intel/publications/162606-004%20iPDS%20Personal%20Development%20System%20Users%20Guide-Oct83.pdf
Note the layout of ISIS files can be found elsewhere, but if you need to create new disks my mkidsk utility can create imd or img disk images with the correct layout for ISIS I through ISIS III and ISIS PDS, however because the IMD format supports only FM or MFM encoding, M2FM is recorded as MFM.
ISIS IV effectively uses iRMX disk format, the specific format should be read off the disk header.
The format is documented in https://mark-ogden.uk/files/intel/publications/143308-001%20Structure%20of%20iRMX%2086%20Named%20File%20Volumes-Jan81.pdf. Note ISIS IV uses a 128 byte fnode size, unlike most iRMX disks which use 90 bytes. This is reflected in the header.
Mark
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/686fa3f4-d7aa-44ca-99e2-396380a6c9afn%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/a0617c13-de58-46bc-a5b8-4acbedc52717n%40googlegroups.com.
Bill
Although I have recently done a minor modification to the c-port of asm80 to add a new option ISISNAME to force names to limit to 6 characters, the previous change was in 14-Feb-2024 and that has been on github for sometime. Both versions work correctly in terms of return code i.e. 0 for success.
If you are using the c port run asm80 -V which should tell you the version you are using. The latest on github is 2024.2.14.22.
Regards
Mark
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/006201db4a80%244b213b60%24e163b220%24%40btinternet.com.
Bill
You are using a very old version of the C port of ASM80.
The latest can be found by cloning the c-ports repository.
You are missing many enhancements including
The other tools have also been significantly enhanced i.e. PL/M-80, LINK, LOCATE, LIB, IXREF all of which support the longer Windows filenames
Regards
Mark
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/d817de5f-e93e-451b-acac-a7838c772a3e%40nj7p.info.
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/008b01db4a8d%24f6a193b0%24e3e4bb10%24%40btinternet.com.
Bill
I have been unable to reproduce your problem with a cloned copy direct of the c-tools repository from GitHub
I have however uploaded the latest versions to GitHub. This no longer uses the Batch file scripts but compiled C code, which is slightly faster.
See if this helps, if it doesn’t I will share pre-compiled versions of the code for you to use
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/6be8d247-e58f-4563-83c8-fe43ec79cfed%40nj7p.info.
Scott—
For the 36 pin male version, other than the intel PN 103109-001, I have a viking PN 292-0001. Do you have other manufacturers and part numbers?
I haven’t built your multimodule adapter for my iPDS yet, but when I get around to it the SBX-251s clone would be nice to have also. I have one or two SBX-251 but am using them elsewhere. I have a surplus of bubbles and support chips so am well set there.
Thanks
craig
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/3f43eaab-7de1-404b-b10d-47571468e221n%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/001b01db4b09%244b28b730%24e17a2590%24%40btinternet.com.
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/001b01db4b09%244b28b730%24e17a2590%24%40btinternet.com.
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/001b01db4b09%244b28b730%24e17a2590%24%40btinternet.com.
Bill
The build will not work with VS2008 as it doesn’t support the C standard I use, which is C17 (i.e. 2017 which is 9 years after VS2008 was released). In practice the code would probably compile using C11 but again this 3 years after VS2008.
stdbool.h is a standard C header that declares type bool, true and false. The other C standard features I use include stdint.h, and _Noreturn neither of which are supported in the old C standard used by VS2008
From your other emails I looked at the error messages and screen. It looks like the space between New and Stuff is the problem. In the solution file I hadn’t put quotes around the path to the executable and the shell that invokes the code appears to have failed as it thinks the application name is New!!!
I will update my solution file to address this, but for now simply renaming “New Stuff” to remove the space should hopefully solve the problem.
As noted before, it is probably better to clone the repository which will include the git history, rather than download the ZIP file. After the initial clone updates can be done with git pull.
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/055391ae-ccf6-41b9-9d4d-ba904c2b19c9%40nj7p.org.
To view this discussion visit https://groups.google.com/d/msgid/intel-devsys/004601db4d47%2423804ff0%246a80efd0%24%40btinternet.com.