118 cpu_jump( _environment, finishedLabel );
120 cpu_label( _environment, backspaceLabel );
136 cpu_jump( _environment, repeatLabel );
138 cpu_label( _environment, finishedLabel );
152 switch( result->type ) {
void cpu_dsfree(Environment *_environment, char *_index)
void cpu_bveq(Environment *_environment, char *_value, char *_label)
void cpu_dsresize(Environment *_environment, char *_index, char *_resize)
void cpu_compare_8bit(Environment *_environment, char *_source, char *_destination, char *_other, int _positive)
CPU 6309: emit code to compare two 8 bit values
void cpu_inc(Environment *_environment, char *_variable)
void cpu_move_8bit_indirect_with_offset2(Environment *_environment, char *_source, char *_value, char *_offset)
void cpu_label(Environment *_environment, char *_label)
void cpu_dec(Environment *_environment, char *_variable)
void cpu_dsalloc(Environment *_environment, char *_size, char *_index)
void cpu_store_8bit(Environment *_environment, char *_destination, int _value)
CPU 6309: emit code to store 8 bit
void cpu_jump(Environment *_environment, char *_label)
void cpu_bvneq(Environment *_environment, char *_value, char *_label)
void cpu_dsdescriptor(Environment *_environment, char *_index, char *_address, char *_size)
Variable * variable_retrieve(Environment *_environment, char *_name)
int variable_exists(Environment *_environment, char *_name)
Variable * variable_string_val(Environment *_environment, char *_value)
Emit code for = VAL( ... ).
Variable * variable_move(Environment *_environment, char *_source, char *_destination)
Store the value of a variable inside another variable by converting it.
Variable * variable_move_naked(Environment *_environment, char *_source, char *_destination)
Store the value of a variable inside another variable without conversion.
Variable * variable_define(Environment *_environment, char *_name, VariableType _type, int _value)
Define a variable for the program.
Variable * variable_temporary(Environment *_environment, VariableType _type, char *_meaning)
Define a temporary variable.
#define INPUT_DEFAULT_SEPARATOR
#define INPUT_DEFAULT_SIZE
#define INPUT_DEFAULT_CURSOR
void cmove_direct(Environment *_environment, int _dx, int _dy)
void coleco_inkey(Environment *_environment, char *_pressed, char *_key)
void print(Environment *_environment, char *_value, int _new_line, int _raw)
Emit code for PRINT... instruction.
KeyboardConfig keyboardConfig
#define MAX_TEMPORARY_STORAGE
struct _Variable Variable
Structure of a single variable.
#define CRITICAL_INPUT_UNSUPPORTED(v, t)
struct _Environment Environment
Structure of compilation environment.
enum _VariableType VariableType
Type of variables.
char DATATYPE_AS_STRING[][16]