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.
|
|
|
|
|
2021-01-08 00:05:26 +00:00
|
|
|
sys (part of syslib)
|
|
|
|
--------------------
|
|
|
|
``target``
|
2021-01-07 22:36:28 +00:00
|
|
|
A constant ubyte value designating the target machine that the program is compiled for.
|
|
|
|
Notice that this is a compile-time constant value and is not determined on the
|
|
|
|
system when the program is running.
|
|
|
|
The following return values are currently defined:
|
|
|
|
|
|
|
|
- 16 = compiled for CommanderX16 with 65C02 CPU
|
|
|
|
- 64 = compiled for Commodore-64 with 6502/6510 CPU
|
|
|
|
|
2021-01-08 15:20:56 +00:00
|
|
|
``exit(returncode)``
|
|
|
|
Immediately stops the program and exits it, with the returncode in the A register.
|
|
|
|
Note: custom interrupt handlers remain active unless manually cleared first!
|
|
|
|
|
2021-01-08 00:05:26 +00:00
|
|
|
``memcopy(from, to, numbytes)``
|
|
|
|
Efficiently copy a number of bytes from a memory location to another.
|
|
|
|
NOTE: 'to' must NOT overlap with 'from', unless it is *before* 'from'.
|
|
|
|
Because this function imposes some overhead to handle the parameters,
|
|
|
|
it is only faster if the number of bytes is larger than a certain threshold.
|
|
|
|
Compare the generated code to see if it was beneficial or not.
|
|
|
|
The most efficient will often be to write a specialized copy routine in assembly yourself!
|
|
|
|
|
|
|
|
``memset(address, numbytes, bytevalue)``
|
|
|
|
Efficiently set a part of memory to the given (u)byte value.
|
|
|
|
But the most efficient will always be to write a specialized fill routine in assembly yourself!
|
|
|
|
Note that for clearing the screen, very fast specialized subroutines are
|
|
|
|
available in the ``textio`` and ``graphics`` library modules.
|
|
|
|
|
|
|
|
``memsetw(address, numwords, wordvalue)``
|
|
|
|
Efficiently set a part of memory to the given (u)word value.
|
|
|
|
But the most efficient will always be to write a specialized fill routine in assembly yourself!
|
2021-01-07 22:36:28 +00:00
|
|
|
|
2021-01-08 15:20:56 +00:00
|
|
|
``rsave()``
|
|
|
|
Saves the CPU registers and the status flags.
|
|
|
|
You can now more or less 'safely' use the registers directly, until you
|
|
|
|
restore them again so the generated code can carry on normally.
|
|
|
|
Note: it's not needed to rsave() before an asm subroutine that clobbers the X register
|
|
|
|
(which is used as the internal evaluation stack pointer).
|
|
|
|
The compiler will take care of this situation automatically.
|
|
|
|
Note: the 16 bit 'virtual' registers of the Commander X16 are *not* saved.
|
|
|
|
|
|
|
|
``rrestore()``
|
|
|
|
Restores the CPU registers and the status flags from previously saved values.
|
|
|
|
Note: the 16 bit 'virtual' registers of the Commander X16 are *not* restored.
|
|
|
|
|
|
|
|
``read_flags() -> ubyte``
|
|
|
|
Returns the current value of the CPU status register.
|
|
|
|
|
|
|
|
``set_carry()``
|
|
|
|
Sets the CPU status register Carry flag.
|
|
|
|
|
|
|
|
``clear_carry()``
|
|
|
|
Clears the CPU status register Carry flag.
|
|
|
|
|
|
|
|
``set_irqd()``
|
|
|
|
Sets the CPU status register Interrupt Disable flag.
|
|
|
|
|
|
|
|
``clear_irqd()``
|
|
|
|
Clears the CPU status register Interrupt Disable flag.
|
|
|
|
|
|
|
|
``progend()``
|
|
|
|
Returns the last address of the program in memory + 1.
|
|
|
|
Can be used to load dynamic data after the program, instead of hardcoding something.
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
|
2020-10-15 19:30:03 +00:00
|
|
|
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-30 22:34:00 +00:00
|
|
|
- list files on disk, optionally filtering by a simple pattern with ? and *
|
2020-12-08 00:34:08 +00:00
|
|
|
- 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
|
|
|
|
|
|
|
|
|
2021-01-07 19:01:11 +00:00
|
|
|
string
|
|
|
|
------
|
|
|
|
Provides string manipulation routines.
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
``length(str) -> ubyte length``
|
2021-01-07 19:01:11 +00:00
|
|
|
Number of bytes in the string. This value is determined during runtime and counts upto
|
|
|
|
the first terminating 0 byte in the string, regardless of the size of the string during compilation time.
|
|
|
|
Don't confuse this with ``len`` and ``sizeof``
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
``left(source, length, target)``
|
2021-01-07 19:01:11 +00:00
|
|
|
Copies the left side of the source string of the given length to target string.
|
|
|
|
It is assumed the target string buffer is large enough to contain the result.
|
|
|
|
Also, you have to make sure yourself that length is smaller or equal to the length of the source string.
|
|
|
|
Modifies in-place, doesn't return a value (so can't be used in an expression).
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
``right(source, length, target)``
|
2021-01-07 19:01:11 +00:00
|
|
|
Copies the right side of the source string of the given length to target string.
|
|
|
|
It is assumed the target string buffer is large enough to contain the result.
|
|
|
|
Also, you have to make sure yourself that length is smaller or equal to the length of the source string.
|
|
|
|
Modifies in-place, doesn't return a value (so can't be used in an expression).
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
``slice(source, start, length, target)``
|
2021-01-07 19:01:11 +00:00
|
|
|
Copies a segment from the source string, starting at the given index,
|
|
|
|
and of the given length to target string.
|
|
|
|
It is assumed the target string buffer is large enough to contain the result.
|
|
|
|
Also, you have to make sure yourself that start and length are within bounds of the strings.
|
|
|
|
Modifies in-place, doesn't return a value (so can't be used in an expression).
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
``find(string, char) -> uword address``
|
2021-01-07 19:01:11 +00:00
|
|
|
Locates the first position of the given character in the string, returns the string starting
|
|
|
|
with this character or $0000 if the character is not found.
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
``compare(string1, string2) -> ubyte result``
|
2021-01-07 19:01:11 +00:00
|
|
|
Returns -1, 0 or 1 depeding on wether string1 sorts before, equal or after string2.
|
|
|
|
Note that you can also directly compare strings and string values with eachother
|
|
|
|
using ``==``, ``<`` etcetera (it will use string.compare for you under water automatically).
|
|
|
|
|
2021-01-07 22:36:28 +00:00
|
|
|
``copy(from, to) -> ubyte length``
|
2021-01-07 19:01:11 +00:00
|
|
|
Copy a string to another, overwriting that one. Returns the length of the string that was copied.
|
|
|
|
Often you don't have to call this explicitly and can just write ``string1 = string2``
|
|
|
|
but this function is useful if you're dealing with addresses for instance.
|
|
|
|
|
2021-01-10 14:22:21 +00:00
|
|
|
``lower(string)``
|
|
|
|
Lowercases the petscii-string in place.
|
|
|
|
|
|
|
|
``upper(string)``
|
|
|
|
Uppercases the petscii-string in place.
|
|
|
|
|
2021-01-07 19:01:11 +00:00
|
|
|
|
2020-10-15 19:30:03 +00:00
|
|
|
floats
|
|
|
|
------
|
2021-02-21 21:48:06 +00:00
|
|
|
Provides definitions for the ROM/kernal subroutines and utility routines dealing with floating
|
2020-10-15 19:30:03 +00:00
|
|
|
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
|
2020-12-30 17:02:46 +00:00
|
|
|
- drawing individual pixels
|
|
|
|
- drawing lines, rectangles, filled rectangles, circles, discs
|
2020-10-15 19:30:03 +00:00
|
|
|
|
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
|
2020-12-27 22:57:13 +00:00
|
|
|
- clearing screen, switching screen mode, also back to text mode is possible.
|
|
|
|
- drawing individual pixels
|
|
|
|
- drawing lines, rectangles, filled rectangles, circles, discs
|
2020-12-26 12:38:14 +00:00
|
|
|
- drawing text inside the bitmap
|
2020-12-27 22:57:13 +00:00
|
|
|
- in monochrome mode, it's possible to use a stippled drawing pattern to simulate a shade of gray.
|
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.
|