asm_book/section_1/structs/test01.c
2022-06-11 12:16:27 -05:00

9 lines
167 B
C

struct Foo {
long a;
short b;
int c;
};
struct Foo Bar = { 0xaaaaaaaaaaaaaaaa, 0xbbbb, 0xcccccccc };
struct Foo Fee = { 0xaabbccddeeff0011, 0x2233, 0x44556677 };