|
ugBASIC 1.18
An isomorphic BASIC language compiler for retrocomputers
|
#include "../../ugbc.h"Go to the source code of this file.
Functions | |
| void | wait_cycles (Environment *_environment, int _timing, int _parallel) |
| Emit ASM code for WAIT [int] CYCLES. | |
| void | wait_cycles_var (Environment *_environment, char *_timing, int _parallel) |
| Emit ASM code for WAIT [int] CYCLES. | |
| void wait_cycles | ( | Environment * | _environment, |
| int | _timing, | ||
| int | _parallel ) |
Emit ASM code for WAIT [int] CYCLES.
Emit ASM code for WAIT # [integer] CYCLES.
This function outputs a code that engages the CPU in a busy wait.
| _environment | Current calling environment |
| _timing | Number of cycles to wait |
Definition at line 49 of file wait_cycles.c.
| void wait_cycles_var | ( | Environment * | _environment, |
| char * | _timing, | ||
| int | _parallel ) |
Emit ASM code for WAIT [int] CYCLES.
Emit ASM code for WAIT [expression] CYCLES.
This function outputs a code that engages the CPU in a busy wait.
| _environment | Current calling environment |
| _timing | Number of cycles to wait |
Definition at line 109 of file wait_cycles.c.