Computers and Technology

Assembly language for x86 processors assignment.

use a loop and indexed addressing, to rotate the target string forward by 4 positions. the value of the end of the array should wrap around to the first position. for example the "t" at the end should come around to the front and then the "h" that was next should wrap to the front, etc.

this is a program with a loop and indirect addressing that copies a string from source to target reversing the character in the process. use the following variables: add more to complete

include irvine32.inc

exitprocess proto, dwexitcode: dword

.data
source byte "this is the source string",0
target byte sizeof source dup('#')

.code
main proc
mov esi,0
mov edi, lengthof source - 1
mov ecx, sizeof source

l1:
mov eax, 0
mov al, source[esi]
mov target[edi],al
inc esi
dec edi
loop l1
call dumpregs

invoke exitprocess,0
main endp
end main

answer
Answers: 3

Other questions on the subject: Computers and Technology

image
Computers and Technology, 23.06.2019 17:00, kyleemarie2003
Companies that implement and apply an information system effectively can create
Answers: 1
image
Computers and Technology, 24.06.2019 00:10, roxymiller3942
Read each statement below. if the statement describes a peer-to-peer network, put a p next to it. if the statement describes a server-based network, put an s next to it. p - peer-to-peer s - server-based
Answers: 1
image
Computers and Technology, 24.06.2019 00:40, sierravick123owr441
Use a software program or a graphing utility with matrix capabilities to solve the system of linear equations using an inverse matrix. x1 + 2x2 − x3 + 3x4 − x5 = 6 x1 − 3x2 + x3 + 2x4 − x5 = −6 2x1 + x2 + x3 − 3x4 + x5 = 3 x1 − x2 + 2x3 + x4 − x5 = −3 2x1 + x2 − x3 + 2x4 + x5 = 5
Answers: 3
image
Computers and Technology, 25.06.2019 18:30, cbear5626
To deny a host from sending http traffic destined to a specific server you will need to apply a access control list.
Answers: 1
Do you know the correct answer?
Assembly language for x86 processors assignment.

use a loop and indexed addressing, to r...

Questions in other subjects:

Konu
Mathematics, 30.03.2020 21:26