BartmanAbyss / vscode-amiga-debug

One-stop Visual Studio Code Extension to compile, debug and profile Amiga C/C++ programs compiled by the bundled gcc 12.2 with the bundled WinUAE/FS-UAE.
GNU General Public License v3.0
314 stars 39 forks source link

ADF creation #51

Closed sacredbanana closed 2 years ago

sacredbanana commented 3 years ago

Would it be possible to add the ability to create a bootable ADF containing the compiled app along with its required assets as long as it fits onto a floppy?

BartmanAbyss commented 3 years ago

Do you have a requirement for a non-DOS/trackloader? If not, why don't you just use a command-line tool or a Total Commander plugin to get your files in an ADF file? I'm not sure how the extension could be of use here.

petmac commented 2 years ago

You can use a tool like xdftool for this:

https://amitools.readthedocs.io/en/latest/tools/xdftool.html

Untested but try something like:

xdftool mygame.adf format MyGame ffs + boot install + write a.mingw.exe mygame + makedir S + write startup-sequence S/startup-sequence

startup-sequence:

mygame
BartmanAbyss commented 2 years ago

see #122