Line 16... |
Line 16... |
# Add the macro to the list of recognized macros.
|
# Add the macro to the list of recognized macros.
|
ad.AddMacro('.fetchindexed', 3, [ ['','symbol'] ]);
|
ad.AddMacro('.fetchindexed', 3, [ ['','symbol'] ]);
|
|
|
# Define the macro functionality.
|
# Define the macro functionality.
|
def emitFunction(ad,fp,argument):
|
def emitFunction(ad,fp,argument):
|
variableName = argument[0]['value'];
|
(addr,ixBank,bankName) = ad.Emit_GetAddrAndBank(argument[0]);
|
(addr,ixBank,bankName) = ad.Emit_GetAddrAndBank(variableName);
|
ad.EmitPush(fp,addr,ad.Emit_String(argument[0]['value']),argument[0]['loc']);
|
ad.EmitPush(fp,addr,ad.Emit_String(variableName),argument[0]['loc']);
|
|
ad.EmitOpcode(fp,ad.InstructionOpcode('+'),'+');
|
ad.EmitOpcode(fp,ad.InstructionOpcode('+'),'+');
|
ad.EmitOpcode(fp,ad.specialInstructions['fetch'] | ixBank,'fetch '+bankName);
|
ad.EmitOpcode(fp,ad.specialInstructions['fetch'] | ixBank,'fetch '+bankName);
|
|
|
ad.EmitFunction['.fetchindexed'] = emitFunction;
|
ad.EmitFunction['.fetchindexed'] = emitFunction;
|
|
|
No newline at end of file
|
No newline at end of file
|