Lecture 8: Data Representation

decimal5 -- sample code from textbook illustrating
	    how array access may be compiled
dynarray-gcc -- code illustrating how a GCC extension to C
	        allows arrays whose size it not statically
                known to be allocated on the stack

--------------------------------------------------
# generate decimal5.s
gcc -O2 -S decimal5.c

# generate dynarray-gcc.s
gcc -O2 -S dynarray-gcc.c
--------------------------------------------------
