kesto.de Cheatsheets

Amiga

AmigaDOS - format floppy

FORMAT DRIVE df0: NAME test

AmigaDOS - make floppy bootable

INSTALL ?
df0:

Read floppy to ADF image using drawbridge

drawbridge /dev/ttyUSB0 test.adf READ

Compile for Kickstart 1.3

Using the toolchain from https://github.com/bebbo/amiga-gcc

m68k-amigaos-gcc hello.cpp -mcrt=nix13 -o hello

Add binary to ADF image using xdftool

xdftool test.adf + write hello
xdftool test.adf list

Write ADF image to floppy using drawbridge

drawbridge /dev/ttyUSB0 test.adf WRITE VERIFY

(Boot from floppy, start binary with "hello")