Adding 2 and 3 digit capacity for assembly program

AI Thread Summary
The discussion revolves around a program designed to demonstrate subroutines in assembly language, specifically for multiplication. The user is seeking assistance in modifying the program to handle two-digit inputs and produce three-digit outputs. The program currently uses subroutines for prompting user input, converting ASCII to integers, performing multiplication, and converting integers back to ASCII for display.Participants in the discussion suggest that the program appears to be written for a Motorola 6800 or 68000 architecture, and there is a mention of MIPS architecture, which offers built-in multiplication instructions that could simplify the implementation. The key points include the need for clarity on the specific assembly language being used and the suggestion that two decimal digits can fit in a byte, while three-digit outputs can be accommodated in two bytes. The conversation emphasizes the importance of understanding the limitations of the current implementation and exploring built-in multiplication capabilities in MIPS to enhance efficiency.
md01
Messages
2
Reaction score
0
I have the following program. I cannot figure out how to Add two-digit input and three-digit output capacity to it though.
; This program is designed to demonstrate the use of subroutines in
; programming.
; This file is phase 3 and introduces a multiply subroutine.
; Current support subroutines include : PMPTOUT, MULT, ATOI, ITOA

.ORIG x3000 ; load the program here

; Request factor1 from the user
; To be retrieved from R0 according to convention

AND R0,R0,#0

; Call prompt subroutine and output PROMPT1

LEA R3,PROMPT1
JSR PMPTOUT

TRAP x20 ; Use GETC to retrieve user character entry into R0
TRAP x21 ; Echo the entered factor

; Convert factor1 to an integer
; Use R2 to convert ASCII factor1 to an integer, store in R4 when done

AND R2,R2,#0 ; Clear R2
ADD R2,R0,#0 ; Load R2 with the ASCII value of factor1
JSR ATOI
ADD R4,R4,R2

LD R0,NewLine ; Go to a clean line for the next input
TRAP x21

; Request factor2 from user
; To be retrieved from R0 according to convention

AND R0,R0,#0

; Call prompt subroutine and output PROMPT2

LEA R3,PROMPT2
JSR PMPTOUT

TRAP x20 ; Use GETC to retrieve user character entry into R0
TRAP x21 ; Echo the entered factor

; Convert factor2 to an integer
; Use R2 to convert ASCII factor2 to an integer, store in R5 when done

AND R2,R2,#0 ; Clear R2
ADD R2,R0,#0 ; Load R2 with the ASCII value of factor1
JSR ATOI
ADD R5,R5,R2

LD R0,NewLine ; Go to a clean line for the next input
TRAP x21

; Perform multiplication with MULT subroutine
; Registers R4 and R5 correctly contain two integer factors here.
; R6 contains the integer product.

JSR MULT

; Use prompt writing subroutine to announce result

LEA R3,RESULT
JSR PMPTOUT

; Display the result of the multiplication on a clean line

JSR ITOA
TRAP x21 ; Write the product to the display
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
TRAP x25 ; HALT the processor
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PMPTOUT ST R7,SaveR7
AND R0,R0,#0
ADD R0,R3,R0
TRAP x22 ; Call PUTS
LD R7,SaveR7
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Multiply subroutine
; Expects factor1 in R4 and factor2 in R5
; Returns the product in R6

MULT AND R6,R6,#0 ; Clear R6 to hold result of multiplication
AGAIN ADD R6,R6,R4
ADD R5,R5,#-1
BRp AGAIN
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Subroutine to convert ASCII character to an integer
; This routine uses R2 as a holding register for the correction
ATOI ST R3,SaveR3
AND R3,R3,#0 ; Clear R3
LD R3,ASCII ; Load ASCII correction into R3
NOT R3,R3 ; Form 1s complement
ADD R3,R3,#1 ; Form 2s complement
ADD R2,R2,R3 ; ACSII correction, R2 now contains integer for
; math operations
LD R3,SaveR3
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
ITOA ST R3,SaveR3
AND R0,R0,#0 ; Clear R0 for product display
ADD R0,R6,R0 ; Load product integer into R0
AND R3,R3,#0 ; Clear R3 to ready ASCII correction
LD R3,ASCII ; Load ASCII correction into R3
ADD R0,R0,R3 ; Make integer an ASCII character for output
LD R3,SaveR3
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; MEMORY AREA

NewLine .FILL x000A
ASCII .FILL x0030
SaveR7 .FILL x0000
SaveR3 .FILL x0000
PROMPT1 .STRINGZ "Enter the first factor\n"
PROMPT2 .STRINGZ "Enter the second factor\n"
RESULT .STRINGZ "The product of the factors is :\n"

.END
; End of
 
Technology news on Phys.org
Which CPU are you trying to program? I do not recognize the mnemonics.
 
md01 said:
I have the following program. I cannot figure out how to Add two-digit input and three-digit output capacity to it though.
Helpful information would be what kind of assembly language you're using. This appears to me to be Motorola 6800 or 68000, but it could possibly be MIPS.

By "two digits" do you mean two decimal digits? If so, two decimal digits will fit into a byte, and three digits for your output will fit comfortably in two bytes.
md01 said:
; This program is designed to demonstrate the use of subroutines in
; programming.
; This file is phase 3 and introduces a multiply subroutine.
; Current support subroutines include : PMPTOUT, MULT, ATOI, ITOA

.ORIG x3000 ; load the program here

; Request factor1 from the user
; To be retrieved from R0 according to convention

AND R0,R0,#0

; Call prompt subroutine and output PROMPT1

LEA R3,PROMPT1
JSR PMPTOUT

TRAP x20 ; Use GETC to retrieve user character entry into R0
TRAP x21 ; Echo the entered factor

; Convert factor1 to an integer
; Use R2 to convert ASCII factor1 to an integer, store in R4 when done

AND R2,R2,#0 ; Clear R2
ADD R2,R0,#0 ; Load R2 with the ASCII value of factor1
JSR ATOI
ADD R4,R4,R2

LD R0,NewLine ; Go to a clean line for the next input
TRAP x21

; Request factor2 from user
; To be retrieved from R0 according to convention

AND R0,R0,#0

; Call prompt subroutine and output PROMPT2

LEA R3,PROMPT2
JSR PMPTOUT

TRAP x20 ; Use GETC to retrieve user character entry into R0
TRAP x21 ; Echo the entered factor

; Convert factor2 to an integer
; Use R2 to convert ASCII factor2 to an integer, store in R5 when done

AND R2,R2,#0 ; Clear R2
ADD R2,R0,#0 ; Load R2 with the ASCII value of factor1
JSR ATOI
ADD R5,R5,R2

LD R0,NewLine ; Go to a clean line for the next input
TRAP x21

; Perform multiplication with MULT subroutine
; Registers R4 and R5 correctly contain two integer factors here.
; R6 contains the integer product.

JSR MULT

; Use prompt writing subroutine to announce result

LEA R3,RESULT
JSR PMPTOUT

; Display the result of the multiplication on a clean line

JSR ITOA
TRAP x21 ; Write the product to the display
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
TRAP x25 ; HALT the processor
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
PMPTOUT ST R7,SaveR7
AND R0,R0,#0
ADD R0,R3,R0
TRAP x22 ; Call PUTS
LD R7,SaveR7
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Multiply subroutine
; Expects factor1 in R4 and factor2 in R5
; Returns the product in R6

MULT AND R6,R6,#0 ; Clear R6 to hold result of multiplication
AGAIN ADD R6,R6,R4
ADD R5,R5,#-1
BRp AGAIN
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Subroutine to convert ASCII character to an integer
; This routine uses R2 as a holding register for the correction
ATOI ST R3,SaveR3
AND R3,R3,#0 ; Clear R3
LD R3,ASCII ; Load ASCII correction into R3
NOT R3,R3 ; Form 1s complement
ADD R3,R3,#1 ; Form 2s complement
ADD R2,R2,R3 ; ACSII correction, R2 now contains integer for
; math operations
LD R3,SaveR3
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
ITOA ST R3,SaveR3
AND R0,R0,#0 ; Clear R0 for product display
ADD R0,R6,R0 ; Load product integer into R0
AND R3,R3,#0 ; Clear R3 to ready ASCII correction
LD R3,ASCII ; Load ASCII correction into R3
ADD R0,R0,R3 ; Make integer an ASCII character for output
LD R3,SaveR3
RET
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; MEMORY AREA

NewLine .FILL x000A
ASCII .FILL x0030
SaveR7 .FILL x0000
SaveR3 .FILL x0000
PROMPT1 .STRINGZ "Enter the first factor\n"
PROMPT2 .STRINGZ "Enter the second factor\n"
RESULT .STRINGZ "The product of the factors is :\n"

.END
; End of
 
its using a LC3 calculator in MIPS
 
md01 said:
its using a LC3 calculator in MIPS
The MIPS instruction set has two instructions for multiplication: MULT (signed multiplication) and MULTU (unsigned version). Why aren't you using one of these instructions instead of writing a subroutine?

Also, all of the MIPS registers are 32 bits (four bytes). What are the specific problems you're having with input and output?
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top