PicoMite V6.00.02 release candidates - all versions


Author Message
matherp
Guru

Joined: 11/12/2012
Location: United Kingdom
Posts: 11026
Posted: 11:57am 18 Apr 2025      

I've change the filespec slightly. Filename is "help.txt" - lowercase. Everything should be on different lines. Below is my test file and the result.





  Quote  ~COLOR
COLOR fore [, back]
Sets the default color for commands (PRINT, etc)
that display on the on the attached LCD panel.
'fore' is the foreground colour, 'back' is the background colour.
The background is optional and if not specified will default to black.
~COLOUR
COLOUR fore [, back]
Sets the default colour for commands (PRINT, etc)
that display on the on the attached LCD panel.
'fore' is the foreground colour, 'back' is the background colour.
The background is optional and if not specified will default to black.
~COLOUR MAP
COLOUR MAP inarray%(),outarray%() [,colourmap%()]
This command generates RGB888 colours in outarray% from colour codes (0-15)
in inarray%. If the optional colourmap% parameter is used this must be 16
elements long). In this case the values in inarray% are mapped to the colours
for that index value in colourmap%
~DO
DO <statements> LOOP
Loops while Loops while 'expression' is true (this is equivalent to the older
WHILE-WEND loop).If, at the start, the expression is false the statements in the
loop will not be executed, not even once.
~DO WHILE
DO WHILE expression <statements> LOOP
Loops until the expression following UNTIL is true. Because the test is made
at the end of the loop the statements inside the loop will be executed at least
be executed, not even once.