mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 05:46:51 +08:00
9 lines
176 B
C
9 lines
176 B
C
struct Foo {
|
|
long a;
|
|
short b;
|
|
int c;
|
|
};
|
|
|
|
struct Foo Bar = { 0xaaaaaaaaaaaaaaaa, 0xbbbb, 0xcccccccc };
|
|
|
|
struct Foo Fee = { 0xaabbccddeeff0011, 0x2233, 0x44556677 };
|