Mercurial > hg > Papers > 2021 > soto-thesis
view prepaper/src/metaCodeGearExample.cbc @ 14:a63df15c9afc default tip
DONE
author | soto <soto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 15 Feb 2021 23:36:39 +0900 |
parents | 3dba680da508 |
children |
line wrap: on
line source
__code add_stub(struct Context* context) { // Input Data Gear Integer* input1 = &context->data[context->idg + 0]->Integer; Integer* input2 = &context->data[context->idg + 1]->Integer; // set Continuation enum Code next = context->next; // Output Data Gear Integer** O_output = (Integer **)&context->data[context->odg + 0]; goto add(context, input1, input2, next, O_output); }