95 cpu_call( _environment,
"lib_create_vector" );
void cpu_move_16bit(Environment *_environment, char *_source, char *_destination)
CPU 6309: emit code to move 16 bit
void cpu_call(Environment *_environment, char *_label)
void cpu_return(Environment *_environment)
Variable * variable_retrieve(Environment *_environment, char *_name)
Variable * variable_retrieve_or_define(Environment *_environment, char *_name, VariableType _type, int _value)
Variable * variable_move(Environment *_environment, char *_source, char *_destination)
Store the value of a variable inside another variable by converting it.
Variable * variable_define(Environment *_environment, char *_name, VariableType _type, int _value)
Define a variable for the program.
char * address_displacement(Environment *_environment, char *_address, char *_displacement)
Variable * create_vector(Environment *_environment, char *_x, char *_y)
Emit ASM code to implement CREATE PATH command.
struct _Variable Variable
Structure of a single variable.
struct _Environment Environment
Structure of compilation environment.