Nathanael,
There is a Nice conversion program named SAMDISK located at:
[url]
https://simonowen.com/samdisk/
[/url]
A format that it supports is .DSK for Amstrad
[url]
https://simonowen.com/samdisk/formats/
[/url]
DSK — Disk image (Amstrad CPC).
You can convert a .DSK to a .RAW image with SAMDISK
[code]
SAMdisk image.dsk image.raw
[/code]
I use SAMDISK in Linux to convert the Image to *.RAW, and then cpmtools will access it with the
properdefinition.
[code]
~/Downloads/samdisk$ wine samdisk Ballyhoo_1986_Infocom_cpm_version.dsk Ballyhoo.raw
Wrote 40 cyls, 1 head, 9 sectors, 512 bytes/sector = 184320 bytes
[/code]
cp/m definitions are located at:
[url]
https://github.com/ldkraemer/CPM-Floppy-Definitions
[/url]
Directory of Ballyhoo.raw is at 0x2400 = 9216 Decimal 9216 / 512 =18 so, two tracks for boot sector.
[code]
00002400 00 42 41 4C 4C 59 48 4F 4F C3 4F 4D 00 00 00 02 .BALLYHOO.OM....
00002410 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
00002420 00 42 41 4C 4C 36 34 20 20 C3 4F 4D 00 00 00 44 .BALL64 .OM...D
00002430 03 04 05 06 07 08 09 0A 0B 00 00 00 00 00 00 00 ................
00002440 00 42 41 4C 4C 31 32 38 20 C3 4F 4D 00 00 00 44 .BALL128 .OM...D
00002450 0C 0D 0E 0F 10 11 12 13 14 00 00 00 00 00 00 00 ................
00002460 00 42 41 4C 4C 32 35 36 20 C3 4F 4D 00 00 00 44 .BALL256 .OM...D
00002470 15 16 17 18 19 1A 1B 1C 1D 00 00 00 00 00 00 00 ................
00002480 00 42 41 4C 4C 59 48 4F 4F C4 41 54 00 00 00 80 .BALLYHOO.AT....
00002490 1E 1F 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D .. !"#$%&'()*+,-
000024A0 00 42 41 4C 4C 59 48 4F 4F C4 41 54 01 00 00 80 .BALLYHOO.AT....
000024B0 2E 2F 30 31 32 33 34 35 36 37 38 39 3A 3B 3C 3D ./0123456789:;<=
000024C0 00 42 41 4C 4C 59 48 4F 4F C4 41 54 02 00 00 80 .BALLYHOO.AT....
000024D0 3E 3F 40 41 42 43 44 45 46 47 48 49 4A 4B 4C 4D >?@ABCDEFGHIJKLM
000024E0 00 42 41 4C 4C 59 48 4F 4F C4 41 54 03 00 00 80 .BALLYHOO.AT....
000024F0 4E 4F 50 51 52 53 54 55 56 57 58 59 5A 5B 5C 5D NOPQRSTUVWXYZ[\]
00002500 00 42 41 4C 4C 59 48 4F 4F C4 41 54 04 00 00 80 .BALLYHOO.AT....
00002510 5E 5F 60 61 62 63 64 65 66 67 68 69 6A 6B 6C 6D ^_`abcdefghijklm
00002520 00 42 41 4C 4C 59 48 4F 4F C4 41 54 05 00 00 80 .BALLYHOO.AT....
00002530 6E 6F 70 71 72 73 74 75 76 77 78 79 7A 7B 7C 7D nopqrstuvwxyz{|}
00002540 00 42 41 4C 4C 59 48 4F 4F C4 41 54 06 00 00 80 .BALLYHOO.AT....
00002550 7E 7F 80 81 82 83 84 85 86 87 88 89 8A 8B 8C 8D ~...............
[/code]
cpmtools should be able to access the .RAW image. BIN2IMD will create an *.IMD
file to write to Floppy. Or, you can use Linux's dd to write the *.RAW file to
Floppy. libdsk and SAMDISK should also be able to create a floppy.
Larry