我向我的教授求助。他的任期很深,并不在乎,所以他只是给了我一个模糊的解决方案。基本分配是获取用户输入(十六进制值),将值转换为十进制,然后将其打印出来。这是我的代码:
; SECOND ASSIGNMENT
org 100h
;equates
cr equ 0dh ;carriage return
lf equ 0ah ;line feed
section .data
prompt0: db 0dh, 0ah, "My name is Brandon Copeland. Prepare to enter data! $"
prompt1: db 0dh, 0ah, "Enter a hex digit: $"
prompt2: db 0dh, 0ah, "In decimal it is: $"
prompt3: db 0dh, 0ah, "Do you want to do it again? Press 'y' or 'Y' to continue $"
prompt4: db "Illegal entry: must be 0 - 9 or A - F $"
section .text
start:
mov ah,9 ;Display string
mov dx,prompt0 ;Greeting
int 21h ;System call
mov ah,9 ;Display string
mov dx,prompt1 ;Prompt for first number
int 21h ;System call
mov bx,0 ;bx holds input value
mov ah,1 ;Reads keyboard character
int 21h ;System call
cmp al, '9' ;compares input to '9'
je print ;if 9, jump to print
jl print ;if less than 9, jump to print
ja decConvert ;if greater than 9, convert A - F to 10 - 15
decConvert:
and al,11011111b ; force uppercase
sub al,65 ; convert 'A'-'F' to 10-15
pop bx
mov ah,9
mov dx,prompt2
int 21h
mov ah,2 ;print char
mov dl,'1' ;print '1'
int 21h
mov ah,2
mov dl,bl
int 21h
jmp repeat
print:
mov ah,9
mov dx, prompt2
int 21h
mov ah,2
mov dl,al
int 21h
repeat:
mov ah,9
mov dx, prompt3 ;asks user if wants to do again
int 21h
mov bx,0 ;gets user answer
mov ah,1
int 21h
cmp al,'y' ;if y, restart
je start
cmp al,'Y' ;if Y, restart
je start
jmp exit ;otherwise, terminate program ;
exit:
mov ah,04ch ;DOS function: exit
mov al,0 ;exit code
int 21h ;call DOS, exit
在离开之前,我的教授提到由于所有十六进制值A-F都将以'1'开头,我可以打印出'1'一次,然后打印下一个数字,我必须弹出al的内容进入另一个注册表。如果你看一下标签“decConvert”,我将al弹出到bx中,然后尝试打印bl。
数字0 - 9的输出很好。但是,无论何时我尝试输入A-F,每次输出都只是'1'。我究竟做错了什么?
答案 0 :(得分:3)
显然你不知道pop
做了什么。查阅指令集参考。
提示:您希望push ax
在pop bx
所在的位置,并希望pop dx
位于mov dl,bl
。
您的sub al,65
也是错误的,因为它转换为0..5
而非'0'..'5'
(即您想要sub al, 17
)