Lecture 7: Procedure

Sample code for computing factorial recursively
Warning: While correct for n >= 0, this is not
         the best way to implement this function in C!

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