Requirement for Procedures
Consider this abstract code:
instruction 1 #some instruction
instruction 2
call procA #go to procedure
instruction 3 #return here!
.... #other stuff
procA: instructions for procA
After procA has completed, control returns to the instruction after the call.