;you are required to complete the necessary elements of the program for MASM and LINK
;remember all numbers are in hex
;load into DEBUG and trace the program

	mov ax,1122
	mov bx,3344
	mov cx,5566
	mov dx,7788
;check at this point the values of the above registers
;check and record the values of segment registers
;check and record the values of index/pointer registers
;check the content of the stack - remember to check out SS

	push ax		;check SP and content of stack 
	push bx		;check SP and content of stack 
	push cx		;check SP and content of stack 
	push dx		;check SP and content of stack 

	pop di		;check DI, SP and content of stack 
	pop si		;check SI, SP and content of stack 
	pop bp		;check BP, SP and content of stack 
	pop es		;check ES, SP and content of stack

;check content of [num] to [num+3] - remember to check out DS
	mov num,ax	;check content of [num] & [num+1]
	push num	;check SP, content of [num] & [num+1] and stack
	pop 2[num]	;check SP, content of [num+2] & [num+3] and stack
