Lesser Program III - Assembly Code Slinging
From Maryville College CS Wiki
< Os | spring2019
This program is simplicity itself! It should ask the user for their name, and then greet them. Below is a sample run:
What is your name? Bob Hello, Bob. How are you today?
The complicating factor is that I want you to do this in assembly. You will have no C libraries (or indeed libraries of any kind), so you will have to do this exclusively through the use of system calls using the linux calling convention. Good luck!