field OFFSET,CODE_BLOCK
"field" initializes a field of a structure. The structure should already have been allocated using the "struct" macro. An error message will be issued if you use "field" before using "struct".
struct {
char a[8];
int i;
} SSS =
{ "abcdefg",10 }
could be duplicated with the YAA code
SSS: struct 3,0
a: field 0,{.data "abcdefg\0"}
i: field 2,{.data 10}
Copyright © 1996, Thinkage Ltd.