当前位置: 代码迷 >> 汇编语言 >> 请问一段汇编
  详细解决方案

请问一段汇编

热度:1807   发布时间:2013-02-26 00:00:00.0
请教一段汇编
网上遇到一个题目,是关于汇编的,请达人指教。

要求:
Find out what the BL registry value is at each block and convert it to ascii. The solution is the concatenation of all the ascii values.

------------
mov AX,171
sub AX,154
mov CX,AX
shl AX,2
sub AX,CX
mov BL,AL

mov BX,101
mov CL,42h
sub BX,13h
shr CX,1
sub BL,CL

mov AX,13h
mov BX,3
mul BL
mov BL,AL

mov CX,7
mov AX,0C8h
idiv CL
add AL,01Bh
mov BL,AL

mov CX,12h
sub CX,0Ah
shl CX,1
mov BX,CX
shl CX,2
add CX,BX
sub CL,5
mov BL,CL

------解决方案--------------------------------------------------------
什么东西密码么? 3197K
  相关解决方案