-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Information] using "successful" cpmtools with a recreated 128MB RC2040 .cf #5
Comments
|
Another "success" ;) Calculation-description is - as comment - at the top of the diskdef-file ;) Drive are named from A: (rc2040a) to P: (rc2040p) A command is like And it did work without the fiddling with dd and the 1K header :) see also the post in the RC2014-Z80 Google-Group: |
|
This will only work with a 128MB .cf image (see above) - |
|
here cpmtools diskdefs for a 128MB .cf or .img file Could be used also with the CP/M Image File Explorer Just rename RC2040img_diskdefs.txt to diskdefs |
|
Thanks :) Its so frustrating CPM file manager is so close, but just not usable for me. If only you could provide the disk defs I think it would work. I might try creating an image from the program itself and see if its different from the 128k images we are using. |
|
Same issue with images created by CPM manager itself. After transferring a few files it stops with no error on drag drop or Crashes with error on File import. |
I transfered the complete Wordstar and Turbo Pacal in a 128MB image with no problems But when the program does create a empty image it uses |
|
I wonder if its a win10 thing. Ive tried with no AV and as Administrator. How did you move the images, cut & paste I might try it on my laptop (win11) and a win7 machine to prove its not something with my machine. |
I do use Win10-Prof-64Bit as normal User (also not started as Admin). I open the image, import/drag something in & delete something and then Save the image. Did you try the same on the image I did attach in the message above? In the attached Image I had files like you imported as a Backup of MBASIC43 on K: But I also see my files are all in capital Letters - I dont know if that matters :( Did you install for "All Users" (like me) or only "for your User"? |
|
Added details into SD card directory, File formats.md and the README May add into my own blog too, but done in Git Hub terms |





// CPM_RC2040.cf = https://github.com/ExtremeElectronics/RC2040/raw/main/SD%20Card%20Contents/CPMIncTransient.zip
// CPM128MB_org.img = https://github.com/RC2014Z80/RC2014/raw/master/CPM/CPM%20128MB%20inc%20transient%20apps.zip
// Google Groups thread about the comtools diskdef for .img files
// search for rc2014cf-cpmtools-diskdefs.txt
// from irjustman@gmail.com 18.05.2017, 13:46:14 through RC2014-Z80
// Info from ```
https://github.com/EtchedPixels/RC2014/blob/master/OUTDATED_INSTRUCTIONS.md
// In other words the IDE disk format (.cf) has (additionally to the .img )
// a 1K header that holds meta-data and the virtual identify block.
// Extrating the 1K header from the original 512MB CPM_RC2040.cf
dd if=./CPM_RC2040.cf bs=512 count=2 of=./CF1k_Header.bin
// Creating a working copy of the CPM128MB_org.img
cp ./CPM128MB_org.img ./CPM128MB.img
// copying Worstar to Drive O: on the working copy
cpmcp -f rc2014o ./CPM128MB.img /toshiba/wordstar/. 0:
// copying some software to Drive A: on the working copy
cpmcp -f rc2014a ./CPM128MB.img ../RUNCPM/. 0:
//checking copied files on drive a in the working copy
cpmls -f rc2014a ./CPM128MB.img
// creating NEW CPMIncTransient.cf out of the 1K header and 128MB working copy
// creating with > a NEW CPMIncTransient.cf with the content of the 1K header
dd if=./CF1k_Header.bin > ./CPMIncTransient.cf
// appending the 128MB working copy with >> to the a NEW CPMIncTransient.cf
dd if=./CPM128MB.img >> ./CPMIncTransient.cf
``
Using_cpmtools_with_cf_image.txt
rc2014cf-cpmtools-diskdefs.zip
CPMIncTransient_128MB.zip
`
The text was updated successfully, but these errors were encountered: