2020-10-15 19:30:03 +00:00
|
|
|
************************
|
|
|
|
Compiler library modules
|
|
|
|
************************
|
|
|
|
|
|
|
|
The compiler provides several "built-in" library modules with useful subroutine and variables.
|
|
|
|
|
|
|
|
Some of these may be specific for a certain compilation target, or work slightly different,
|
|
|
|
but some effort is put into making them available across compilation targets.
|
|
|
|
|
|
|
|
This means that as long as your program is only using the subroutines from these
|
|
|
|
libraries and not using hardware- and/or system dependent code, and isn't hardcoding certain
|
|
|
|
assumptions like the screen size, the exact same source program can
|
|
|
|
be compiled for multiple different target platforms. Many of the example programs that come
|
|
|
|
with Prog8 are written like this.
|
|
|
|
|
|
|
|
You can ``%import`` and use these modules explicitly, but the compiler may also import one or more
|
|
|
|
of these library modules automatically as required.
|
|
|
|
|
2020-12-21 17:28:10 +00:00
|
|
|
For full details on what is available in the libraries, look at their source code here:
|
|
|
|
https://github.com/irmen/prog8/tree/master/compiler/res/prog8lib
|
|
|
|
|
|
|
|
|
2020-10-17 18:35:36 +00:00
|
|
|
.. caution::
|
2020-10-15 19:30:03 +00:00
|
|
|
The resulting compiled binary program *only works on the target machine it was compiled for*.
|
|
|
|
You must recompile the program for every target you want to run it on.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
syslib
|
|
|
|
------
|
|
|
|
The "system library" for your target machine. It contains many system-specific definitions such
|
|
|
|
as ROM/kernal subroutine definitions, memory location constants, and utility subroutines.
|
|
|
|
|
|
|
|
Many of these definitions overlap for the C64 and Commander X16 targets so it is still possible
|
|
|
|
to write programs that work on both targets without modifications.
|
|
|
|
|
|
|
|
conv
|
|
|
|
----
|
|
|
|
Routines to convert strings to numbers or vice versa.
|
|
|
|
|
|
|
|
- numbers to strings, in various formats (binary, hex, decimal)
|
2020-10-15 21:36:03 +00:00
|
|
|
- strings in decimal, hex and binary format into numbers
|
|
|
|
|
2020-10-15 19:30:03 +00:00
|
|
|
|
|
|
|
textio (txt.*)
|
|
|
|
--------------
|
|
|
|
This will probably be the most used library module. It contains a whole lot of routines
|
|
|
|
dealing with text-based input and output (to the screen). Such as
|
|
|
|
|
|
|
|
- printing strings and numbers
|
|
|
|
- reading text input from the user via the keyboard
|
|
|
|
- filling or clearing the screen and colors
|
|
|
|
- scrolling the text on the screen
|
|
|
|
- placing individual characters on the screen
|
|
|
|
|
|
|
|
|
|
|
|
diskio
|
|
|
|
------
|
|
|
|
Provides several routines that deal with disk drive I/O, such as:
|
|
|
|
|
2020-12-08 00:34:08 +00:00
|
|
|
- list files on disk, optionally filtering by prefix or suffix
|
|
|
|
- show disk directory as-is
|
2020-10-15 19:30:03 +00:00
|
|
|
- display disk drive status
|
|
|
|
- load and save data from and to the disk
|
|
|
|
- delete and rename files on the disk
|
|
|
|
|
|
|
|
|
|
|
|
floats
|
|
|
|
------
|
|
|
|
Provides definitions for the ROM/kernel subroutines and utility routines dealing with floating
|
|
|
|
point variables. This includes ``print_f``, the routine used to print floating point numbers.
|
|
|
|
|
|
|
|
|
|
|
|
graphics
|
|
|
|
--------
|
2020-12-26 12:38:14 +00:00
|
|
|
Monochrome bitmap graphics routines, fixed 320*200 resolution:
|
2020-10-15 19:30:03 +00:00
|
|
|
|
|
|
|
- clearing the screen
|
|
|
|
- drawing lines
|
|
|
|
- drawing circles and discs (filled circles)
|
|
|
|
- plotting individual pixels
|
|
|
|
|
2020-12-26 12:38:14 +00:00
|
|
|
This library is available both on the C64 and the Cx16.
|
|
|
|
It uses the ROM based graphics routines on the latter, and it is a very small library because of that.
|
|
|
|
That also means though that it is constrained to 320*200 resolution on the Cx16 as well.
|
|
|
|
Use the ``gfx2`` library if you want full-screen graphics or non-monochrome drawing.
|
|
|
|
|
|
|
|
|
|
|
|
gfx2 (cx16 only)
|
|
|
|
-----------------
|
|
|
|
Full-screen multicolor bitmap graphics routines, available on the Cx16 machine only.
|
|
|
|
|
|
|
|
- multiple full-screen resolutions: 640 * 480 monochrome, and 320 * 240 monochrome and 256 colors
|
|
|
|
- clearing screen, switching screen mode
|
|
|
|
- drawing pixels
|
|
|
|
- drawing text inside the bitmap
|
2020-12-27 16:34:25 +00:00
|
|
|
- lines, rectangles, circles, discs.
|
2020-12-26 12:38:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
palette (cx16 only)
|
|
|
|
--------------------
|
|
|
|
Available for the Cx16 target. Various routines to set the display color palette.
|
|
|
|
There are also a few better looking Commodore-64 color palettes available here,
|
|
|
|
because the Commander X16's default colors for this (the first 16 colors) are too saturated
|
|
|
|
and are quite different than how they looked on a VIC-II chip in a C-64.
|
|
|
|
|
2020-10-15 19:30:03 +00:00
|
|
|
|
|
|
|
math
|
|
|
|
----
|
|
|
|
Low level math routines. You should not normally have to bother with this directly.
|
|
|
|
The compiler needs it to implement most of the math operations in your programs.
|
|
|
|
|
|
|
|
|
|
|
|
cx16logo
|
|
|
|
--------
|
|
|
|
A 'fun' module that contains the Commander X16 logo and that allows you
|
|
|
|
to print it anywhere on the screen.
|
|
|
|
|
|
|
|
|
|
|
|
prog8_lib
|
|
|
|
---------
|
|
|
|
Low level language support. You should not normally have to bother with this directly.
|
|
|
|
The compiler needs it for verious built-in system routines.
|