|
ugBASIC 1.18
An isomorphic BASIC language compiler for retrocomputers
|
#include "../../../ugbc.h"Go to the source code of this file.
Functions | |
| void | sprite_disable (Environment *_environment, int _sprite) |
| Emit ASM code for SPRITE [int] DISABLE. | |
| void | sprite_disable_var (Environment *_environment, char *_sprite) |
| Emit ASM code for SPRITE [expression] DISABLE. | |
| void sprite_disable | ( | Environment * | _environment, |
| int | _sprite ) |
Emit ASM code for SPRITE [int] DISABLE.
This function emits a code capable of disable the sprite _sprite. This version is suitable when direct integer are used.
| _environment | Current calling environment |
| _sprite | Index of the sprite to disable (0...7) |
Definition at line 108 of file sprite_disable.c.
| void sprite_disable_var | ( | Environment * | _environment, |
| char * | _sprite ) |
Emit ASM code for SPRITE [expression] DISABLE.
This function emits a code capable of disable the sprite _sprite. This version is suitable when an expression is used.
| _environment | Current calling environment |
| _sprite | Expression with the index of the sprite to disable (0...7) |
Definition at line 121 of file sprite_disable.c.