This file contains an overview of the PET runtime system as it comes with the cc65 C compiler. It describes the memory layout, PET-specific header files, available drivers, and any pitfalls specific to that platform.
Please note that PET-specific functions are just mentioned here, they are described in detail in the separate function reference. Even functions marked as "platform dependent" may be available on more than one platform. Please see the function reference for more information.
The standard binary output format generated by the linker for the PET target is a machine language program with a one line BASIC stub, which calls the machine language part via SYS. This means that a program can be loaded as BASIC program and started with RUN. It is of course possible to change this behaviour by using a modified startup file and linker config.
cc65 generated programs with the default setup run with the I/O area and the kernal and BASIC ROM enabled, which gives a usable memory range of $0400 - $7FFF (32KB machine). All ROM entry points may be called directly without additional code.
Special locations:
The text screen is located at $8000.
The C runtime stack is located at $7FFF and growing downwards.
The C heap is located at the end of the program and grows towards the C runtime stack.
Programs containing PET-specific code may use the pet.h
or cbm.h
header files. Using the later may be an option when writing code for more than
one CBM platform, since it includes pet.h
and declares several functions
common to all CBM platforms.
There are currently no special PET functions.
Some functions are available for all (or at least most) of the Commodore machines. See the function reference for declaration and usage.
The following pseudo variables declared in the pet.h
header file do allow
access to hardware located in the address space. Some variables are
structures, accessing the struct fields will access the chip registers.
PIA1, PIA2
Access to the two PIA (peripheral interface adapter) chips is available via
the PIA1
and PIA2
variables. The structure behind these variables
is explained in _pia.h
.
VIA
The VIA
structure allows access to the VIA (versatile interface
adapter). See the _6522.h
header file located in the include
directory for the declaration of the structure.
The names in the parentheses denote the symbols to be used for static linking of the drivers.
No graphics drivers are currently available for the PET.
No extended memory drivers are currently available for the PET.
The default drivers, joy_stddrv (joy_static_stddrv)
, point to pet-stdjoy.joy (pet_stdjoy_joy)
.
pet-ptvjoy.joy (pet_ptvjoy_joy)
Driver for the Protovision 4-player adapter contributed by Groepaz. See Protovision shop for prices and building instructions. Up to two joysticks are supported.
pet-stdjoy.joy (pet_stdjoy_joy)
Driver for the standard PET userport joystick.
No mouse drivers are currently available for the PET.
No serial drivers are currently available for the PET.
Command-line arguments can be passed to main()
. Since that is not
supported directly by BASIC, the following syntax was chosen:
RUN:REM ARG1 " ARG2 IS QUOTED" ARG3 "" ARG5
main()
is the program name.The program return code (low byte) is passed back to BASIC by use of the
ST
variable.
The runtime for the PET uses routines marked as .INTERRUPTOR
for
interrupt handlers. Such routines must be written as simple machine language
subroutines and will be called automatically by the interrupt handler code
when they are linked into a program. See the discussion of the .CONDES
feature in the
assembler manual.
The extended memory at $9000 of the CBM 8x96 may be added to the heap by using the following code:
/* Check for the existence of RAM */
if (PEEK(0x9000) == POKE(0x9000, PEEK(0x9000)+1)) {
/* Add it to the heap */
_heapadd ((void *) 0x9000, 0x2000);
}
This software is provided 'as-is', without any expressed or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: