Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.sys.apple2.programmer > #6349 > unrolled thread
| Started by | mpower <mpower-codeworks@gmail.com> |
|---|---|
| First post | 2026-08-04 02:09 +0000 |
| Last post | 2026-08-09 19:50 +0000 |
| Articles | 5 — 3 participants |
Back to article view | Back to comp.sys.apple2.programmer
Best method for making disk images for new programs? mpower <mpower-codeworks@gmail.com> - 2026-08-04 02:09 +0000
Re: Best method for making disk images for new programs? Colin Leroy-Mira <colin@colino.net> - 2026-08-04 08:44 +0200
Re: Best method for making disk images for new programs? mpower <mpower-codeworks@gmail.com> - 2026-08-05 02:28 +0000
Re: Best method for making disk images for new programs? ECNeilson <eric@neilsonhart.com> - 2026-08-08 20:32 -0500
Re: Best method for making disk images for new programs? mpower <mpower-codeworks@gmail.com> - 2026-08-09 19:50 +0000
| From | mpower <mpower-codeworks@gmail.com> |
|---|---|
| Date | 2026-08-04 02:09 +0000 |
| Subject | Best method for making disk images for new programs? |
| Message-ID | <114rhl4$1q2nl$1@dont-email.me> |
Hi all, I've been making some programs with CC65 and CL65. Is there a preferred method for making disk images of them? I know I can probably do it with a combo of Ciderpress and Apple Commander, but I wonder if that is the best way to do it. I've seen some works that have multiple size disk images and I imagine there must be some automation there. ProDOS only, and my setup is a //e with CFFA3000. Thanks, Matt <sent via //e and Tusenet>
[toc] | [next] | [standalone]
| From | Colin Leroy-Mira <colin@colino.net> |
|---|---|
| Date | 2026-08-04 08:44 +0200 |
| Message-ID | <20260804084405.58243151@colino.net> |
| In reply to | #6349 |
Hi, >Hi all, I've been making some programs with CC65 and CL65. >Is there a preferred method for making disk images of >them? I know I can probably do it with a combo of Ciderpress >and Apple Commander, but I wonder if that is the best way >to do it. I've seen some works that have multiple size >disk images and I imagine there must be some automation >there. ProDOS only, and my setup is a //e with CFFA3000. I make my floppy images with AppleCommander and my HD images with CiderPress. Automation via Makefiles (copy a blank disk to the target disk, and add the files on the disk). Both work well. Example: https://github.com/colinleroy/a2tools/blob/e57e036e66f424579fa859feb13d4b1ca8f1f0c6/src/image-viewer/Makefile#L78 -- Colin https://www.colino.net/
[toc] | [prev] | [next] | [standalone]
| From | mpower <mpower-codeworks@gmail.com> |
|---|---|
| Date | 2026-08-05 02:28 +0000 |
| Message-ID | <114u74u$2kpk0$1@dont-email.me> |
| In reply to | #6350 |
Thanks for the help! The Apple II projects you have on your website look pretty cool, I must say. I've been doing some similar things with Uthernet II (like writing this message). ---- Original Message ---- Subject: Re: Best method for making disk images for new programs? From: Colin Leroy-Mira <colin@colino.net> Date: Tue, 4 Aug 2026 08:44:05 +0200 Newsgroups: comp.sys.apple2.programmer Article: 8256 Hi, >Hi all, I've been making some programs with CC65 and CL65. >Is there a preferred method for making disk images of >them? I know I can probably do it with a combo of Ciderpress >and Apple Commander, but I wonder if that is the best way >to do it. I've seen some works that have multiple size >disk images and I imagine there must be some automation >there. ProDOS only, and my setup is a //e with CFFA3000. I make my floppy images with AppleCommander and my HD images with CiderPress. Automation via Makefiles (copy a blank disk to the target disk, and add the files on the disk). Both work well. Example: https://github.com/colinleroy/a2tools/blob/e57e036e66f424579fa859feb13d4b1ca8f1f0c6/src/image-viewer/Makefile#L78 -- Colin https://www.colino.net/
[toc] | [prev] | [next] | [standalone]
| From | ECNeilson <eric@neilsonhart.com> |
|---|---|
| Date | 2026-08-08 20:32 -0500 |
| Message-ID | <ffb0be37-9289-4691-9f1a-7e488b0aadd1@neilsonhart.com> |
| In reply to | #6351 |
> ---- Original Message ---- > Subject: Re: Best method for making disk images for new programs? > From: Colin Leroy-Mira <colin@colino.net> > Date: Tue, 4 Aug 2026 08:44:05 +0200 > Newsgroups: comp.sys.apple2.programmer > Article: 8256 > > Hi, > >> Hi all, I've been making some programs with CC65 and CL65. >> Is there a preferred method for making disk images of >> them? I know I can probably do it with a combo of Ciderpress >> and Apple Commander, but I wonder if that is the best way >> to do it. I've seen some works that have multiple size >> disk images and I imagine there must be some automation >> there. ProDOS only, and my setup is a //e with CFFA3000. Nice Github site you have there. I use Brutal Deluxe's Cadius to programmatically build .dsk images of my Apple II projects that I build using makefiles: https://www.brutaldeluxe.fr/products/crossdevtools/cadius/index.html It's a great tool, and let's me quickly go from PC to loading an Apple II .dsk image to test. ECNeilson
[toc] | [prev] | [next] | [standalone]
| From | mpower <mpower-codeworks@gmail.com> |
|---|---|
| Date | 2026-08-09 19:50 +0000 |
| Message-ID | <115almq$2j0gl$1@dont-email.me> |
| In reply to | #6352 |
Much thanks, and: <Nice Github site you have there> thanks again. MP ---- Original Message ---- Subject: Re: Best method for making disk images for new programs? From: ECNeilson <eric@neilsonhart.com> Date: Sat, 8 Aug 2026 20:32:42 -0500 Newsgroups: comp.sys.apple2.programmer Article: 8258 > ---- Original Message ---- > Subject: Re: Best method for making disk images for new programs? > From: Colin Leroy-Mira <colin@colino.net> > Date: Tue, 4 Aug 2026 08:44:05 +0200 > Newsgroups: comp.sys.apple2.programmer > Article: 8256 > > Hi, > >> Hi all, I've been making some programs with CC65 and CL65. >> Is there a preferred method for making disk images of >> them? I know I can probably do it with a combo of Ciderpress >> and Apple Commander, but I wonder if that is the best way >> to do it. I've seen some works that have multiple size >> disk images and I imagine there must be some automation >> there. ProDOS only, and my setup is a //e with CFFA3000. Nice Github site you have there. I use Brutal Deluxe's Cadius to programmatically build .dsk images of my Apple II projects that I build using makefiles: https://www.brutaldeluxe.fr/products/crossdevtools/cadius/index.html It's a great tool, and let's me quickly go from PC to loading an Apple II .dsk image to test. ECNeilson
[toc] | [prev] | [standalone]
Back to top | Article view | comp.sys.apple2.programmer
csiph-web