Copyright (c) Hyperion Entertainment and contributors.
Difference between revisions of "DeveloperDoc:Main"
m (Added title Debugging and moved related links under it) |
(Added title User Assistance and moved AmigaGuide 101 under it and added link to BOOPSI_Gadget_Help_Strings) |
||
(One intermediate revision by the same user not shown) | |||
Line 37: | Line 37: | ||
[[Autodocs:Main|Autodocs]] |
[[Autodocs:Main|Autodocs]] |
||
− | |||
− | [[Fundamental Types]] |
||
[[SDK Developer Tools|Developer Tools]] |
[[SDK Developer Tools|Developer Tools]] |
||
Line 65: | Line 63: | ||
[[Debug Kernel]] |
[[Debug Kernel]] |
||
+ | |||
+ | == User Assistance == |
||
+ | |||
+ | [[AmigaGuide 101|AmigaGuide Online Help]] |
||
+ | |||
+ | [[BOOPSI_Gadget_Help_Strings|BOOPSI Gadget Help]] |
||
== Reference == |
== Reference == |
||
Line 79: | Line 83: | ||
[[AmigaOS Versions]] |
[[AmigaOS Versions]] |
||
+ | |||
+ | [[Fundamental Types]] |
||
[[Controlling Application Stack]] |
[[Controlling Application Stack]] |
||
Line 97: | Line 103: | ||
[[Writing apps for Xena]] |
[[Writing apps for Xena]] |
||
− | |||
− | [[AmigaGuide 101]] |
||
[[Installation Utility]] |
[[Installation Utility]] |
Latest revision as of 10:50, 1 April 2021
Contents
Introduction
Many programming languages can be used on AmigaOS, ranging from interpreted scripting languages to comprehensive compiled languages:
- ARexx: the native AmigaOS scripting language, good for beginners,small projects and talking between applications.
- Python: a common cross platform scripting language ported to & included with AmigaOS. A modern alternative to ARexx.
- C: the primary compiled language for AmigaOS.
- C++: an enhanced version of the C language, supports object-oriented programming.
- Modula2: the compiled language that evolved from Pascal.
- E: an Amiga native compiled language.
ARexx is built into AmigaOS and its original documentation can be found in this part of the Developer's Wiki.
A native compiler for the C and C++ languages is part of the downloadable AmigaOS SDK.
Most of the remaining AmigaOS Developers Wiki provides the latest information on how to program systems running AmigaOS 4.x with the C language. It has been updated for Release 4.0 and higher of AmigaOS and covers all the computer systems which run the Amiga operating system from the Commodore A1200 all the way up to the AmigaOne X5000.
The Wiki assumes some previous experience with programming and familiarity with computers in general. Although it is not required, a knowledge of the C programming language will make it much easier to understand the material in this book. Most of the Amiga operating system is written in C, hence C is the language used for the programming examples.
Many of the AmigaOS concepts, methods described in the wiki for C will also be applicable to other compiled languages, with some variations. Please see the documentation of the respective languages.
This wiki is intended for the following audiences:
- Programmers who want to create application software for AmigaOS systems.
- Software developers who want to upgrade their software for Release 4.0 or higher of the operating system.
- Anyone who wants to know more about how AmigaOS works.
The system software is organized into related groups of functions called libraries. The same basic organization is used for this wiki.
Software Development Kit (SDK)
You can find the AmigaOS SDK at this location.
Guidelines
Debugging
Understanding the alert error numbers