+
+ Ends a struct definition. See the section named [.
+
+
].ENUM
Start an enumeration. This directive is very similar to the C
+.STRUCT
+
+ Starts a struct definition. See the section named [.
+
+
].SUNPLUS
Enable the SunPlus instructions set. This command will not work in the
@@ -2400,6 +2412,23 @@ Here's a list of all control commands and a description, what they do:
+.TAG
+
+ Allocate space for a struct or union.
+
+ Example:
+
+
+ .struct Point
+ xcoord .word
+ ycoord .word
+ .endstruct
+
+ .bss
+ .tag Point ; Allocate 4 bytes
+
+
+
.TCOUNT
Builtin function. The function accepts a token list in braces. The
@@ -3032,6 +3061,63 @@ CPUs (the latter two are upwards compatible to the 65SC02).
+Structs and unions
+
+Structs and unions are special forms of [. They
+are to some degree comparable to their C counterparts. Both have a list of
+members. Each member allocates storage and may optionally have a name, which,
+in case of a struct, is the offset from the beginning and, in case of a union
+is always zero.
+
+Here is an example for a very simple struct with two members and a total size
+of 4 bytes:
+
+]
+ .struct Point
+ xcoord .word
+ ycoord .word
+ .endstruct
+
+
+A union shares the total space between all its members, its size is the same
+as that of the largest member.
+
+A struct or union must not necessarily have a name. If it is anonymous, no
+local scope is opened, the identifiers used to name the members are placed
+into the current scope instead.
+
+A struct may contain unnamed members and definitions of local structs. The
+storage allocators may contain a multiplier, as in the example below:
+
+
+ .struct Circle
+ .struct Point
+ .word 2 ; Allocate two words
+ .endstruct
+ Radius .word
+ .endstruct
+
+
+Using the [ keyword, it is possible to embedd
+already defined structs or unions in structs:
+
+]
+ .struct Point
+ xcoord .word
+ ycoord .word
+ .endstruct
+
+ .struct Circle
+ Origin .tag Point
+ Radius .word
+ .endstruct
+
+
+Space for a struct or union may be allocated using the [ directive.
+
+
+
]Module constructors/destructors
Note: This section applies mostly to C programs, so the explanation