Get the DOS virtual machine from http://glasnost.itcarlow.ie/~mcmanusa/notes/vms/FREEDOS.exe Make sure you have the labs and freedos.exe VM available on memory stick in case their is a problem with network connectivity in the lab. Exercise 1 ---------- Examine LECT0598.DOC. Write an an assembly program called week2a that prints the letter A. Exercise 2 ---------- Write an an assembly program called week2b that prints the letter B. Exercise 3 ---------- Write an an assembly program called week2c that prints the following: AB Exercise 4 ---------- In the command prompt copy week2c.asm to week2d.asm When run it will print the following: A B Exercise 5 ---------- In the command prompt copy week2d.asm to week2e.asm Hint: What is the ASCII value for a LINE FEED character? When run it will print the following: A B Exercise 6 ---------- Call this program week2f.asm When run it will print the following: A B Hint: To go onto the SAME CURSOR POSITION on a newline (e.g. B underneath A) you need to print a LINE FEED and a CARRIAGE RETURN character. Exercise 7 ---------- Call this program week2g.asm When run it will print the following: A B C D E