AVR language code. Let A and B be 16-bit unsigned integers. Theproduct AB requires at most 32 bits. The quotient A/B and remainderA%B each require at most 16 bits.
Modify the code below to compute the product AB and store it inmemory as a 32-bit little-endian unsigned integer.
;mul32.asm
.cseg
.org 0
; Initialization code
; Do not move or change these instructions or the registers theyrefer to.
; You may change the data values being loaded.
; The default values set A = 0x3412 and B = 0x2010
ldi r16, 0x12 ; Low byte of operand A
ldi r17, 0x34 ; High byte of operand A
ldi r18, 0x10 ;
PayPal Gateway not configured
PayPal Gateway not configured