20 lines
144 B
Plaintext
20 lines
144 B
Plaintext
record A {
|
|
u32 x;
|
|
u8 z;
|
|
}
|
|
|
|
record B {
|
|
u32 x;
|
|
A a;
|
|
}
|
|
|
|
@section(".data");
|
|
|
|
B rec:;
|
|
|
|
@section(".text");
|
|
|
|
rec.x = 5;
|
|
rec.a.x = 10;
|
|
rec.a.z = 9;
|