4. Write the following statement in C, in Assembly language unsigned char i,j,ki do k=k+i; j=j+1; incre , while (j != 15); イ-15 IIrest of code. pon Show transcribed image text 4. Write the following statement in C, in Assembly language unsigned char i,j,ki do k=k+i; j=j+1; incre , while (j != 15); イ-15 IIrest of code. pon
Answer
DATA SEGMENT
i DB 20 DUP(?)
j DB 20 DUP(?)
k DB 20 DUP(?)
ENDS
CODE SEGMENT
ASSUME DS:DATA CS:CODE
START:
MOV AX,DATA
MOV DS,AX
MOV
OR
OR