diff --git a/setup/cmdline.bat b/setup/cmdline.bat new file mode 100644 index 0000000..f9f7734 --- /dev/null +++ b/setup/cmdline.bat @@ -0,0 +1,10 @@ +@for /f %%i in ('cd') do @path %path%;%%i\bin + +@echo ******************************************************************************* +@echo * Welcome to amiga-gcc * +@echo ******************************************************************************* +@dir bin\*.exe /w + +m68k-amigaos-gcc hello.c -o hello -Os -noixemul + +@cmd /k \ No newline at end of file diff --git a/setup/hello.c b/setup/hello.c new file mode 100644 index 0000000..b653286 --- /dev/null +++ b/setup/hello.c @@ -0,0 +1,6 @@ +#include + +int main(int argc, char ** argv) { + printf("hello world - with %d args\n", argc); + return 0; +} \ No newline at end of file diff --git a/icon.ico b/setup/icon.ico similarity index 100% rename from icon.ico rename to setup/icon.ico diff --git a/setup2.iss b/setup/setup2.iss similarity index 100% rename from setup2.iss rename to setup/setup2.iss