[bcrouns@ullab1 lab2]$ gcc -g -c -o lab2drv.o lab2drv.c [bcrouns@ullab1 lab2]$ as -o lab2asm.o lab2asm.s [bcrouns@ullab1 lab2]$ gcc -g -o lab2 lab2asm.o lab2drv.o [bcrouns@ullab1 lab2]$ lab2 Please enter the length of recatngle 1: 5 Please enter the width of rectangle 1: 2 Please enter the length of recatngle 2: 7 Please enter the width of rectangle 2: 4 Rectangle Area Perimeter 1. 10 14 2. 28 22 Total 38 36 [bcrouns@ullab1 lab2]$