=================================== Writing Functions in Assembler Code [TOC] =================================== We give a minimalistic example on how a function written in assembly code can be called from a C program: - The C program calling an external function: :import: session18/example/test_factorial.c - The function written in assembly code :import: session18/example/factorial.s Exercise ======== Compile, link an run the code.