Comorg TP Dacula
Comorg TP Dacula
Comorg TP Dacula
BSCPE701
1. MOV AX, 614Bh What would be the value of AX after program execution?
MOV BX, 1251h AX = (0000000001000001)2 = (65)10 = (41h)
AND AX, BX
RET
2. MOV AX, 614Bh What would be the value of AX after program execution?
MOV BX, 1251h AX = (0111001101011011)2 = (29531)10 = (735Bh)
OR AX, BX
RET
3. MOV AX, 614Bh What would be the value of BX after program execution?
This study source was downloaded by 100000814011065 from CourseHero.com on 02-10-2022 18:17:09 GMT -06:00
https://www.coursehero.com/file/118595300/COMORG-TP-DACULAdocx/
MOV BX, 1251h AX = (0111001100011010)2 = (29466)10 =
(731Ah) XOR BX, AX
RET
4. MOV DX, 614Bh What would be the value of DX after program execution?
NOT DX AX = (1001111010110100)2 = (40628)10 =
(9EB4h) RET
5. MOV AX, 614Bh What would be the value of AX after program execution?
MOV BX, 1251h AX = (1110110111101111)2 = (60911)10 =
(EDEFh) AND AX, BX
NOT BX XOR
AX, BX RET
1. MOV AX, 6Bh What would be the value of AL, in binary form, after program
SHR AL, 1 execution? AL = 0000
SHL AL, 3
RET
2. MOV AX, AAAAh In hexadecimal format, what would be the value of AX after
MOV CL, 8 program execution? AX = 1010101000000000
SHL AX, CL
RET
3. MOV AL, 8Ch What would be the value of AL, in binary form, after program
MOV CL, 3 execution? AL = 11110001
SAR AL, CL
RET
4. MOV AL, 6Bh In hexadecimal format, what would be the value of AL after
program
ROR AL, 1 execution? AL = 10100001
ROL AL, 3
RET
5. MOV AX, 6Bh What would be the value of AL, in binary form, after program
RCR AL 3 execution? AL = 00001101
RET
This study source was downloaded by 100000814011065 from CourseHero.com on 02-10-2022 18:17:09 GMT -06:00
https://www.coursehero.com/file/118595300/COMORG-TP-DACULAdocx/
Powered by TCPDF (www.tcpdf.org)