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

7 lines
91 B
C

struct Foo {
short a;
char b;
int c;
};
struct Foo Bar = { 0xaaaa, 0xbb, 0xcccccccc };