我目前有一个任务,我必须使用汇编语言编写代码,用户输入获取4位十六进制值并将其转换为二进制值,然后在获得二进制值后,必须将其转换为月份日和年份,前7位数字是年份,接下来的4位是月份,最后5位是日期。
我已将所有内容转换为二进制文件,并了解如何将其从二进制文件转换为年,月和日的正常整数值。当我运行我的代码时,输出为0/0/0
。我不确定这是不是我把我的移动或其他东西搞砸了。你们可以看看并给我一个关于在哪里纠正的输入?在我粘贴的代码中,我只是提出了calcYear并且认为我可以解决这个问题,然后从那里继续工作。
我的代码:
firstLine:
call crlf
mov si, offset programOne
mov cx, programOneLen
call putStrng ;displays 'Program by Joe Remaklus'
call crlf
call crlf
call inputVal ;prompt for hex input
call putBin ;display the value in AX as binary
call crlf
call calcYear ;display the year of the first 7 binary digits.
mov si, offset slash
mov cx, slashLen
call putStrng
call calcMonth ;display the month of the next 4 binary digits.
mov si, offset slash
mov cx, slashLen
call putStrng
call calcDay ;display the day of the next 5 binary digits.
call crlf
call inputVal
call putBin
mov ah,04c
int 021
prompt db 'Enter a 4-digit hex value'
lenPrompt = $-prompt
inputVal:
push si, cx
mov si, offset prompt
mov cx, lenPrompt
call putStrng
call crlf
call getHex
call crlf
pop cx, si
ret
;---------------------------------------------------------------
putBin:
push ax, cx, dx
mov cx, 16 ;number of bits to display
putBinLoopTop:
mov dl, '0' ;assume bit to display is zero
shl ax, 1 ;shift bit to display into Carry Flag
jnc putBinSkipInc ;if the top bit was zero skip the inc
inc dl ;else inc DL to '1'
putBinSkipInc:
call putChar ;display the character in DL
loop putBinLoopTop ;continue until 16 bits are displayed
pop dx, cx, ax
ret
;---------------------------------------------------------------
calcYear:
mov year, 0
mov si, 0
shl ax, 1
adc si, 0
iMul onetwoeight
add year, si
mov si, 0
shl ax, 1
adc si, 0
iMul sixfour
add year, si
mov si, 0
shl ax, 1
adc si, 0
iMul threetwo
add year, si
mov si, 0
shl ax, 1
adc si, 0
iMul sixteen
add year, si
mov si, 0
shl ax, 1
adc si, 0
iMul eight
add year, si
mov si, 0
shl ax, 1
adc si, 0
iMul four
add year, si
mov si, 0
shl ax, 1
adc si, 0
iMul two
add year, si
mov si, 0
shl ax, 1
adc si, 0
iMul one
add year, si
mov si, year
add si, 1980
call putPos
ret
答案 0 :(得分:1)
如果我理解正确的话,那么在你输入你的" ax"在二进制中看起来像这样: yyyy yyym mmmd dddd
并且您想要将值提取回普通数字。 我想我可以理解你的想法" calcYear"但是我很抱歉没有费心去尝试完全理解它并修复它。如果您仍然很好奇,只需使用调试器单步执行每条指令并查看它向南的位置。
我会告诉你如何以不同的方式思考这个问题。
让我们试着深入了解并理解这一点:
; ax is encoded as this: yyyy yyym mmmd dddd
push ax
push ax ; store the encoded value at stack twice
; extract "day" value
and ax,01Fh ;only "d" bits will survive
mov [day],ax
; extract "month" value
pop ax ; restore encoded input
shr ax,5 ; shift ax by number of "d" bits
and ax,0Fh ; only shifted "m" bits
mov [month],ax
; extract "year" value
pop ax ; restore encoded input
shr ax,5+4 ; shift ax by number of "d" and "m" bits
; no need to "and", as "shr" did fill upper bits by zeroes
add ax,1980 ; so "0" encoded year is 1980? (deducted from OP source)
mov [year],ax
ret
我希望这会给你一些新的想法,如何使用特定的数字位。请注意and/or
可以掩盖您感兴趣的内容,shr/sar/sal/shl/ror/rol/rcr/...
可以将其置于理想的位置。可以使用xor
对结果进行某种修补(如果需要),test
就像and
但是只获得标志寄存器更新,然后还有一些比特导向的x386 +(或486? )指令,有些"高级"并且可以为您节省我之前提到的那些基础知识的2-3个指令组合。所以你可以放心地忽略它们,只要你完全理解那些基本的并且可以根据需要用它们弯曲任何东西。