|
ugBASIC 1.18
An isomorphic BASIC language compiler for retrocomputers
|
#include "../../ugbc.h"Go to the source code of this file.
Functions | |
| void | color_border (Environment *_environment, int _color) |
| Emit ASM code for instruction COLOR BORDER [int]x. | |
| void | color_border_var (Environment *_environment, char *_color) |
| Emit ASM code for instruction COLOR BORDER [expression]. | |
| void color_border | ( | Environment * | _environment, |
| int | _color ) |
Emit ASM code for instruction COLOR BORDER [int]x.
This function outputs the ASM code to change the border color, where the command is invoked with a direct integer value.
| _environment | Current calling environment |
| _color | Index color to use. |
Definition at line 95 of file color_border.c.
| void color_border_var | ( | Environment * | _environment, |
| char * | _color ) |
Emit ASM code for instruction COLOR BORDER [expression].
This function outputs the ASM code to change the border color, where the command is invoked with an expression.
| _environment | Current calling environment |
| _color | Variable with the expression. |
Definition at line 110 of file color_border.c.