Difference between revisions of "Atari"

From Lazarus wiki
Jump to navigationJump to search
(→‎Linker: vlink is now default for native builds)
m (lang)
Line 28: Line 28:
 
To build an Atari cross-compiler, use the following steps:
 
To build an Atari cross-compiler, use the following steps:
  
# Install FPC the latest stable compiler, at the time of the writing of this article this is FPC 3.0.0. This will be used as the startup compiler.
+
# Install the latest stable FPC version, at the time of the writing of this article this is FPC 3.0.0. This will be used as the startup compiler.
 
# Check out FPC SVN trunk into a directory.
 
# Check out FPC SVN trunk into a directory.
 
# Make sure you have Atari TOS cross-binutils and vlink in the PATH.
 
# Make sure you have Atari TOS cross-binutils and vlink in the PATH.

Revision as of 14:49, 30 December 2016

This page is about the Atari TOS version of Free Pascal, which means Motorola 680x0 CPU based Atari systems running TOS and compatibles.

Status

The initial port was done by Károly Balogh, maintainer of the m68k and Amiga ports, based on some existing bits from FPC 0.x and 1.x times done by Carl Eric Codere and others. The Atari TOS port lacks a maintainer currently. This means although we try to keep it working and do minor fixes to it, the port receives no new features. Contact the m68k port maintainer, if you are interested in stepping up as an Atari maintainer.

The RTL support is reasonably advanced, and it's sufficient to run the compiler itself on Atari TOS, but - given the real hardware's constraints - it's not extensively tested. The largest known basic chunk missing from the RTL is the DOS unit, although it's now considered legacy, it's still required for some packages, and lots of legacy code. A "tosunits" package is also missing, which means FPC provides no OS API bindings for applications.

Identification

To identify Atari TOS during compile-time, use {$IFDEF ATARI}.

SysCalls

Free Pascal supports generating Atari TOS-style system calls, also know as traps. It's not required to use inline assembly to do system calls. However, you must declare every function you're going to use in the following way:

function gemdos_fwrite(handle: smallint; count: longint; buf: pointer): longint; syscall 1 64;

Note the syscall modifier in the function declaration. The first argument to the syscall modifier is the trap number to call, and the second one is the trap opcode. All syscall parameters are passed on the stack and they're word (2 byte) aligned. For further examples, see rtl/atari/gemdos.inc in the RTL source.

Linker

For Atari, some versions of GNU ld linker available online is known to be problematic when working together with Free Pascal. It's recommended to use vlink by Frank Wille, while compiling to Atari TOS with FPC. Specifying -XV argument enables vlink for cross compilers. The native compiler defaults to vlink, to switch the linker back to GNU ld use -XV- argument.

vlink is open source, and it is available here. Binaries are available as part of the vbcc compiler package.

Cross compiling

To build an Atari cross-compiler, use the following steps:

  1. Install the latest stable FPC version, at the time of the writing of this article this is FPC 3.0.0. This will be used as the startup compiler.
  2. Check out FPC SVN trunk into a directory.
  3. Make sure you have Atari TOS cross-binutils and vlink in the PATH.
  4. Go to the trunk's main directory and use the following command to build an FPC cross-compiler:
  make clean crossall crossinstall OS_TARGET=atari CPU_TARGET=m68k INSTALL_PREFIX="<path/to/install>"

If you've done everything right, you should find a working Atari cross-compiler in the install path you've specified.

Now, lets create a default fpc.cfg for Atari cross compiling. Create a file called <path/to/install>/lib/fpc/etc/fpc.cfg. Put the following lines into that file, and fix up the paths:

#IFDEF CPUM68K
-Fu<path/to/install>/lib/fpc/$fpcversion/units/$FPCTARGET
-Fu<path/to/install>/lib/fpc/$fpcversion/units/$FPCTARGET/*
#IFDEF ATARI
-FD</path/to/atari-cross-binutils>
-XV
#ENDIF
#ENDIF

Optionally add <path/to/install>/lib/fpc/3.1.1/ directory to the PATH, so you'll have direct access to the cross-compiler. If you've done everything right, you now should be able to build Atari executables:

ppcross68k -Tatari <source.pas>