#include "../../ugbc.h"
#include <math.h>
Go to the source code of this file.
◆ data_floating()
| void data_floating |
( |
Environment * | _environment, |
|
|
double | _value ) |
Emit code for DATA instruction (float values).
- Parameters
-
| _environment | Current calling environment |
| _value | Float value to store |
Definition at line 225 of file data.c.
◆ data_numeric()
| void data_numeric |
( |
Environment * | _environment, |
|
|
int | _value ) |
Emit code for DATA instruction (numeric values).
- Parameters
-
| _environment | Current calling environment |
| _value | Numeric value to store |
Definition at line 162 of file data.c.
◆ data_string()
| void data_string |
( |
Environment * | _environment, |
|
|
char * | _value ) |
Emit code for DATA instruction (string values).
- Parameters
-
| _environment | Current calling environment |
| _value | String value to store |
Definition at line 281 of file data.c.
◆ data_type()