|
ugBASIC 1.18
An isomorphic BASIC language compiler for retrocomputers
|
#include "../../../ugbc.h"Go to the source code of this file.
Functions | |
| void | bank_uncompress_semi_var (Environment *_environment, int _bank, int _address1, char *_address2) |
| Emit ASM code for instruction BANK UNCOMPRESS .... | |
| void | bank_uncompress_vars (Environment *_environment, char *_bank, char *_address1, char *_address2) |
| Emit ASM code for instruction BANK UNCOMPRESS .... | |
| void bank_uncompress_semi_var | ( | Environment * | _environment, |
| int | _bank, | ||
| int | _address1, | ||
| char * | _address2 ) |
Emit ASM code for instruction BANK UNCOMPRESS ....
This function outputs the ASM code to uncompress data from a specific bank into the RAM.
| _environment | Current calling environment |
| _bank | bank from uncompress from |
| _address1 | address to uncompress from (0 based) |
| _address2 | address to write to (RAM) |
Definition at line 54 of file bank_uncompress.c.
| void bank_uncompress_vars | ( | Environment * | _environment, |
| char * | _bank, | ||
| char * | _address1, | ||
| char * | _address2 ) |
Emit ASM code for instruction BANK UNCOMPRESS ....
This function outputs the ASM code to uncompress data from a specific bank into the RAM.
| _environment | Current calling environment |
| _bank | bank from uncompress from |
| _address1 | address to uncompress from (0 based) |
| _address2 | address to write to (RAM) |
Definition at line 87 of file bank_uncompress.c.