/* ======================================================================= Demo shows how the C compiler translates C program into assembler code Compile with: gcc -S C-compile.c as -alh C-compile.s ======================================================================= */ int x; int main() { x = 0x1234ABCD; x = 10; }