CSC 222         Lab 
Fall 2000

Note: Lab must done during lab period on Nov 14, if not you have to have
it done by Nov 21 to recieve 3 points - after that 0 points

Topic: Working with ASCII

Create a program that will read in several letters from the
keyboard and print them out in caps.

Example:
AbcDe
ABCDE







Sample

.model small
.stack 100H
.data

.code
Sample  proc
	mov	ax, @data
	mov 	ds,	ax

;;	program goes here

	mov	al, 	0	; exit to DOS
	mov 	ah,	4ch	
	int	21h
	Sample	endp

Fact	PROC

;;	procedure goes here

	ret
Fact	ENDP

	end	Sample