CS401 Computer Architecture and Assembly Language Programming
CS401 Assignment No. 2
Graded
Semester Fall 2018
Question: [15 Marks]
Write a TSR program that will print first letter of your Name on the screen (upper left corner). The letter will
be printed when you will press that letter on keyboard and how many times it will be printed depends on the
last digit of your VUID.
Explanation:
·
Let’s say your name is Muhammad
Usman, and your VUID is BC123456789. You will write code in such a way that if
you press M (first letter of name), then M will be printed on the screen, nine
times (which is the last digit of VUID)
·
As another example, let’s say your
name is Ali Raza, and your VUID is BC987654321. You will write code in such a
way that if you press A (first letter of name), then A will be printed on the
screen, one time (which is the last digit of VUID)
·
If last digit of your VUID is zero,
then you’ll print first letter of your name ten times
·
You will use DOSBox to compile and
execute your code
·
Keep name of assembly file according
to last eight digits of your VUID. For example, if your VUID is BC123456789,
you will keep name of the assembly code file as 23456789.asm