124 variable_store( _environment, value->
name, ( ( _background & 0x07 ) << 3 ) | ( _foreground & 0x07 ) );
void cpu_fill_blocks(Environment *_environment, char *_address, char *_blocks, char *_pattern)
CPU 6309: emit code to fill up a memory area
Variable * variable_retrieve(Environment *_environment, char *_name)
Variable * variable_retrieve_or_define(Environment *_environment, char *_name, VariableType _type, int _value)
Variable * variable_temporary(Environment *_environment, VariableType _type, char *_meaning)
Define a temporary variable.
Variable * variable_store(Environment *_environment, char *_destination, unsigned int _value)
Store a direct value to a variable.
void colormap_clear_with(Environment *_environment, int _foreground, int _background)
Emit ASM implementation for COLORMAP CLEAR WITH [int]x ON [int]x instruction.
void colormap_clear_with_vars(Environment *_environment, char *_foreground, char *_background)
Emit ASM implementation for COLORMAP CLEAR WITH [expression] ON [expression] instruction.
void colormap_clear(Environment *_environment)
Emit ASM implementation for COLORMAP CLEAR instruction.
void colormap_at_var(Environment *_environment, char *_address)
Emit ASM implementation for COLORMAP AT [expression] instruction.
void colormap_at(Environment *_environment, int _address)
Emit ASM implementation for COLORMAP AT [int]x instruction.
struct _Variable Variable
Structure of a single variable.
struct _Environment Environment
Structure of compilation environment.