The document provides instructions for a mini-project to write an 8088 assembly language program using TASM. The program should read in a user's name and ID number of maximum 20 and 7 characters respectively, display them on screen along with a greeting message. It instructs to clear the screen first before writing the program and ensuring no null input.
1 of 1
Download to read offline
More Related Content
ProgrammingProblem
1. Project # 1 Page 1 of 1
Mini-Project #1
Name: Date Performed:
Objective:
Compiling/assembling your first 8088 assembly language using TASM
Learn some basic I/O routines
Instructions:
You are to write an 8088 assembly program that reads in your username and ID# and display
them on the screen. An example of screen output is given below:
Name: <input your name here>
ID# : <input your ID# here>
Hello, <name>! Your ID number is <ID#>
The maximum number of characters for the NAME is 20 characters while the maximum
number of characters for the ID# is 7 characters. Make sure that there wont be any null input.
Clear the screen first before you start writing your program.