vote up 10 vote down star
7

I would like to program an application for the Amiga, just for fun!

Please could someone post a step by step howto based on the following?

  • Exactly what programming tools I should use, are there any already installed?
  • Am I limited to plain text editors, or are there IDEs and debugging tools available?
  • If no tools are already installed, how can this done? Are there free ones?
  • I'd like to learn a traditional Amiga language, could you reccomend one?
  • What should I use to compile the language you suggest?
  • Please could you suggest tools I may use to debug the suggested language?
  • Are there any libraries I should be aware of, such as GUI libraries?

Some things to note...

  • I'm running Workbench 3.1 from within the WinUAE emulator.
  • From Workbench, I can access files from my Windows hard drive.
  • I'd like to code and compile it from Workbench if possible.
  • I'm running WinUAE in A1200 mode, not sure if that matters.
  • There's an application already installed called MEmacs.
  • I know C++ and C# very well, maybe there's a similar Amiga language.
  • I'm aware that you can code with C and C++, but I want to learn a new language.

Update:

I have answered my own question, but please do contribute more answers as I intend on extending my answer. Thanks to all that have contributed so far, you've been very helpful!

flag

In which language? If you use e.g. a C compiler (see my link to a list of compilers, including gcc) then a standard printf("hello world\n") would compile just fine. – Nik Apr 2 at 13:39
Well, seen as its just for fun I figured it wouldnt hurt to learn a new language... I will probably try C though for the sake of it :) – Nick Bolton Apr 2 at 17:30
You have too much time on your hands :) – Tim Apr 6 at 0:35
@Tim: Haha, indeed, its called obsession. I'm trying to redeem myself for not becoming a programmer sooner in life! :p – Nick Bolton Apr 6 at 3:36
should this be community wiki? – ninesided Apr 7 at 0:13
show 1 more comment

11 Answers

vote up 2 vote down

There is the Amiga Developer CD 2.1 which contains everything needed: All the SDKs (including the classic ones for 1.3, 2.0 and 3.1, and the newer one for 3.5 that can also be used on 3.9 to my knowledge) and a suitable 68k C-Compiler.

It's still available from some vendors, and I remember writing some stuff with it. It's C, so it should be rather straight-forward.

No Support for AmigaOS4 though, but then again, Workbench 3.1 was the last real AmigaOS.

link|flag
Nice! Thanks, I'll check that out. – Nick Bolton Jul 28 at 18:34
vote up 1 vote down

Step one, buy one of these.

Step two, buy one of these, and install it.

(You might also need to wait around for one of these to be invented.)

Step three, get up to 88 miles per hour.

link|flag
1  
I was going to suggest something similar, but this is funnier. It's also important to set the year to 1988. – Furious Coder Apr 7 at 1:06
dam it, now i want a flux capacitor! – Chris Oct 11 at 21:49
vote up 2 vote down

Exactly what programming tools I should use, are there any already installed?

Basic was the only language to come pre-packaged, and even it was in two dialects (ABasic, and AmigaBasic). You'll want to look at the Fred Fish collection or AmiNet for more tools, as finding commercial compilers will be nigh-impossible.

Am I limited to plain text editors, or are there IDEs and debugging tools available?

You're pretty much back to edit-save-compile-link-run-crash-whycrash-doh-fixit-edit cycle, IDEs are not readily available. I would look at something like DME (Dillon's Macro Editor), also available on the Fred Fish collection or AmiNet (http://wuarchive.wustl.edu/pub/aminet/). It provides some basic macro construction facilities that will help.

If no tools are already installed, how can this done? Are there free ones?

Yes. Again, Fred Fish, or AmiNet.

I'd like to learn a traditional Amiga language, could you reccomend one?

Draco. It was written by Chris Grey. It's a little "primitive" but it should provide you with all that you need to get going, including the proper bindings and constants. The language is compiled and runs at speeds comparable to C.

What should I use to compile the language you suggest?

Manx or Lattice C were the C compilers of the time (if you can find them, good luck), with Manx tending towards 16bit and Lattice towards 32bit. There were a few tiny C-based compilers. There is 68k assembly (a neato instruction set IMHO), Draco, a pascal dialect, possibly Modula-2, as well as DICE (a free C compiler, but you're looking for something else)...

Please could you suggest tools I may use to debug the suggested language?

Again, commercial tools are far and few between, you're going to have to dig through the public domain archives to find anything.

Are there any libraries I should be aware of, such as GUI libraries?

The libraries are all built in. intuition.library is the name of the library that provides basic windowing support. gfx.library will provide you with high-level primitives, and layers.library will provide you with support for handing the unique bit-plane approach to graphics. Before you get that far, you'll want to look at exec, which was the heart & soul of the OS. It provides pre-emptive multitasking, built-in linked list primitives, message passing primitives, IO primitives, etc. and was heavily re-used throughout the system. If you understand exec, you'll understand the low-level innards of the rest of the system.

Keep in mind that the state of the system will look more like an embedded game console, as there will be no memory protection, SMP support, etc. All of these things could not easily be added due to design constraints that were introduced just before the first Amiga shipped. I seem to recall that the issue was surrounding how it would handle multiple processors and memory protection given that the entire microkernel runs in a non-priv CPU mode.

Last but not least, the magic number is 4, which is a memory address. That address is the pointer to the exec (which is not only a microkernel but also a library) and with it you can bootstrap into the rest of the system via OpenLibrary() calls. Libraries that could not be located will automatically be loaded from disk via AmigaDOS. This is how the Amiga dealt with the issue of portable code - all of the code was written using offsets into a pointer to the "base" of a library and there were no fixed addresses, other than address 4. Every library has a call table of 6 bytes per entry (a jump instruction) that then vectors off into the correct entry point. It was easy to write your own library, provided you had the correct format for your "header". Device drivers "borrowed" the structure of libraries and used the same concept to provide default I/O handlers.

Sorry if the names are slightly wrong, this information is off the top of my head from nearly 20 years ago...

Some things to note...

I'm running Workbench 3.1 from within the WinUAE emulator.

Cool. You're set. That was the last great "classic" workbench.

From Workbench, I can access files from my Windows hard drive.

It'll help, but you'll want to go "native" as much as possible.

I'd like to code and compile it from Workbench if possible.

See above.

I'm running WinUAE in A1200 mode, not sure if that matters.

It's the model of hardware you're emulating; it was a good budget machine, but try setting it for A3000 if possible, that was a nice high-end machine before Commodore had trouble.

There's an application already installed called MEmacs.

Give it a try, if Emacs is your thing...otherwise I would look at some of the native tools.

know C++ and C# very well, maybe there's a similar Amiga language. I'm aware that you can code with C and C++, but I want to learn a new language.

Then Draco is for you. It has most of the bindings for libraries, compiles cleanly, and it's officially a "dead" language given it's tied to a specific hardware platform. Very Amiga-specific. :)

Good luck! Let everyone know how it turned out...

link|flag
Thanks, excellent answer. I will add Draco to my todo list (see my self-answer). – Nick Bolton Apr 7 at 0:22
vote up 2 vote down

http://en.wikipedia.org/wiki/AmigaE

This was like C, but without the pointers. I still have my system API books at home somewhere.

link|flag
I came here to say AmigaE. I programmed a shape presorter for SegaCD Stellar Fire in AmigaE. Loved Modula-2 on the Amiga, and several good C compilers. Used to go hang out with the SAS C guys in Research Triangle. They had Amiga Users Groups meetings there. I think that's where I introduced Sliced HAM mode. – Nosredna May 7 at 2:45
vote up 1 vote down

AMOS, as previously mentioned, is a pretty decent basic dialect, though I would probably take a look at Blitz Basic instead. Or straight 68k assembly using Asm-ONE of course. Asm-One is an IDE of sorts, just don't expect Visual Studio level support tools.

SAS/C was my weapon of choice on the Amiga platform, though there are ports of other C compilers as well.

link|flag
vote up 8 vote down check

Note: Please don't be put off answering just because I have; this is an ongoing thread, and I will keep updating it until I get bored! Thanks for all your answers so far :-)

Spent a few days figuring it out. These instructions are for AMOS Pro, please feel free to either post your own answer for a different language, or update this answer (it's a community wiki).

Workbench Instructions:

  1. Install Amiga Forever 2008 (the plus version includes Workbench 3.1).
  2. Use either Amiga Forever or WinUAE as the emulator (I prefer WinUAE).
  3. Install Amiga Workbench 3.1 to a custom hard drive.
  4. If using WinUEA, just use the af_3x config file (installed with Amiga Forever).
  5. Familiarize yourself with Workbench and the Amiga Shell (see resources).

AMOS Pro Instructions:

AMOS Pro is an IDE which looks a bit like something off an old hacker flick, plus you can even turn on those irritating sounds you hear in the movies. Isn't that great? Anyway, on to the howto...

  1. Acquire the disks for AMOSPro (there are 6 disks in total in v2.00).
  2. Insert AMOSPro_System disk and install AMOS Pro as per the instructions.
  3. Once installed, open the AMOS_Pro directory, and run AMOSPro.
  4. If you don't know AMOS, learn some AMOS coding basics.
  5. Type: Print "Hello world!"
  6. Press F1 to run (does the same as the red triangle to the right of the AMOS logo).
  7. Rejoyce as "Hello world!" appears in white text on an orange background.
  8. TODO: Find out how to compile this as a binary (?) that can be run from Workbench.

AMOS Pro: Hello world!

Here's some more AMOS code for fun.

Input "Who are you? ";S2$
S1$="Oh, hello "
S3$=", nice to see you!"
Print S1$+S2$+S3$

Amiga Tips:

  • [Left Amiga] is the Windows key, [Right Amiga] is the Context Menu key.
  • Press [Left Amiga]+A to switch between AMOS Pro and Workbench.
  • British [@ '] key produces either the # or @ (shift) character.
  • British [~ #] key produces either the \ or | (shift) character.
  • British [¬ ] key produces either the ' or ~ (shift) or (alt) character.

Resources:

*Not neccecary when using WinUAE Amiga Forever config (af_3x).

TODO:

I will try and do a howto for each language as follows.

link|flag
vote up 2 vote down

I'm sure you can find an emulator as other people have mentioned, but I wanted to add that Modula-2 was fairly popular with Amiga programmers.

link|flag
vote up 6 vote down

You should certainly use an emulator -- a modern PC running UAE is a world apart from an A1200. You can run with a nice high screen resolution, and CPU performance orders of magnitude faster (if you want it to be faster that is, all optional of course). Oh, and you can actually access PC hardware through Amiga libraries provided by the emulator if you want.

The Amiga Reference Manuals would be the place to start if you want to hit the 'hardware'. Devpac was the assembler of choice for most people.

There were a few C compilers, and at least one C++ compiler, SAS/C. Here are links to a few more Amiga compilers

If you're looking to learn a new language then Modula-2 might be an option, but really C was the language of choice for most people. The OS itself was written in C (at least from 2.0 onwards -- BCPL prior to that), and the libraries all had C headers provided for accessing them.

Assembly language was hugely popular too for games and demos, and I can personally vouch for that being a whole lot of fun. Good books for this:

  • Motorola Programmer's Reference Manual for 68k-68040, the most comprehensive book on the instruction set. Available free to download here
  • Amiga Hardware Reference Manual, for a complete list of all the hardware registers, how they work and how to use them. Old copies for sale here

One other fun option might be the fairly powerful ARexx scripting language. You could do quite a lot with this, such as controlling other applications through their 'ARexx port' to gain access to their functionality. Much more high level than the other options, but quite easy to get it to do interesting things.

link|flag
Asm-One was a nice 68k assembler. It was really slick. – dangph Apr 4 at 2:17
Comeau C++ used Lattice C as the backend. – Thomas L Holaday Apr 4 at 2:43
vote up 2 vote down

I was an Amiga programmer for some time and used 68k Assembly Language exclusively. The Amiga Reference Manuals were the bibles and indispensable. As for fun programs, I suspect most have been done to death on the Amiga... just search for any idea you have and I'm sure you'll find an existing piece of code.

Playing with the blitter was always fun for me but that's the area I was working in anyway.

link|flag
vote up 2 vote down

There was a big programming tool for Amigas that had the same name as someone in the Bible....

AMOS

That was it.

link|flag
Does anyone remember N.I.A.L.L. written in AMOS Basic? :) – CraigTP Apr 1 at 15:12
vote up 3 vote down

Emulators

Operating systems

Programming resources

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.