  CMD1:
	mov		Aarg,#9CH	     ;Denominator
	mov		Aarg+1,#31H
	mov		Aarg+2,#00H	
	acall	int2float	   
	
	;Debugging - Let's check result from above int2float() - 
	;
	MOV     ANSWER,Aarg+2      ;MSB	
        MOV     ANSWER+1,Aarg+1  
	MOV     ANSWER+2,Aarg+0    ;LSB
	MOV     ANSWER+3,Aexp
	;
	;Send value to Serial Display[1]
	;
	MOV     R0,#ANSWER        
	LCALL	PRNT_4H
	LCALL   CRLF
	;
	acall	copy_ab
	;
	mov		Aarg,#20H		  ;Numerator
	mov		Aarg+1,#42H
	mov		Aarg+2,#02H
	acall	int2float
	;
	;Debugging - Let's check result from above int2float() - 
	;
	MOV     ANSWER,Aarg+2      ;MSB	
        MOV     ANSWER+1,Aarg+1  
	MOV     ANSWER+2,Aarg+0    ;LSB
	MOV     ANSWER+3,Aexp
	;
	;Send value to Serial Display[2]
	;
	MOV     R0,#ANSWER        
	LCALL	PRNT_4H
	LCALL   CRLF
	;
	;Sanity Check - Let's convert Integer to Float to       if it returns
	;our orignally value of 0x3E8, before we multiply.
	;
	;lcall   float2int
	;Debugging - Checking float2Int() - Expecting 0x3E8
	;
	;MOV     ANSWER,Aarg+2      ;MSB	
        ;MOV     ANSWER+1,Aarg+1  
	;MOV     ANSWER+2,Aarg+0    ;LSB
	;
	;Send value to Serial Display[3]
	;
	;MOV     R0,#ANSWER        
	;LCALL	PRNT_6H
	;LCALL   CRLF
	;
	;
	;Floating point multiplication
        ;Input	- Aarg,Aexp
        ;        - Barg,Bexp
	;
	;Let's see if the Inputs (Aarg,Aexp ; Barg,Bexp) are correct.
	;
	;MOV     ANSWER,Aarg+2      ;MSB	
        ;MOV     ANSWER+1,Aarg+1  
	;MOV     ANSWER+2,Aarg+0    ;LSB
	;MOV     ANSWER+3,Aexp
	;MOV     ANSWER+4,Barg+2
	;MOV     ANSWER+5,Barg+1
	;MOV     ANSWER+6,Barg+0
	;MOV     ANSWER+7,Bexp
	;Send value to Serial Display[4]
	;
	;MOV     R0,#ANSWER        
	;LCALL	PRNT_8H
	;LCALL   CRLF
	;
	acall	fpdiv32	    
	;
	;Lets check the FLOAT result of the fpmul32() BEFORE we convert the result to Integer.
	;
	MOV     ANSWER,Aarg+2      ;MSB	
        MOV     ANSWER+1,Aarg+1  
	MOV     ANSWER+2,Aarg+0    ;LSB
	;
	;Send value to Serial Display[5]
	;
	MOV     R0,#ANSWER        
	LCALL	  PRNT_3H
	LCALL   CRLF
	;
	;
	acall	float2int
	;
	;Debugging - Let's check result from multiplication - Result is INTEGER-
	;
	MOV     ANSWER,Aarg+2      ;MSB	
        MOV     ANSWER+1,Aarg+1  
	MOV     ANSWER+2,Aarg+0    ;LSB
	;
	;Send value to Serial Display[6]
	;
	MOV     R0,#ANSWER        
	LCALL	  PRNT_3H
	LCALL   CRLF
	;
	RET
 