This article is from the Amiga FAQ, by Ignaz Kellerer with numerous contributions by others.
There are different Softkickers, some of them needing a MMU (see 68EC0xx). I recommend SKick 3.43 (Aminet, directory `util/boot') because it doesn't need a MMU and supports many different Kickstarts. It is rather easy to create the ROM image using the following program:
#include <stdio.h>
#define kickorig 0xf80000 /* 0xfc0000 for Kick 1.2 und 1.3 */ #define kicklen 0x080000 /* 0x040000 for Kick 1.2 und 1.3 */
void main(int argc, char*argv[]) { FILE *fh;
if ((fh = fopen("kickstart.file", "w")) != NULL) { result = fwrite(kickorig, kicklen, 1, fh); } fclose(fh); }
 
Continue to: