asm_book/section_1/structs/test01.c
Perry Kivolowitz 625d3deaad added structs
2022-06-11 16:26:29 -05:00

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 };