diff options
Diffstat (limited to 'test/autowasm.c')
-rw-r--r-- | test/autowasm.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/autowasm.c b/test/autowasm.c index 4054f48..0f81225 100644 --- a/test/autowasm.c +++ b/test/autowasm.c @@ -125,6 +125,16 @@ int main (int argc, char** argv) { printf("%c ", W_Data_Section_container->entries[i]->data[j]); } printf("\n"); + int j = 0; + printf("offset:\n"); + while(1) { + printf("%02x ", W_Data_Section_container->entries[i]->offset->code[j]); + if (W_Data_Section_container->entries[i]->offset->code[j] == 11) { + break; + } + j++; + } + printf("\n"); } release_all(); |