如何在装配8086中找到一条线?

时间:2016-03-03 22:40:10

标签: assembly dos x86-16

这里是我写的代码我试图在8086上编写,就像在常规键盘上一样,但是每次按下输入它都会向下移动并在RAM中写入第二个字母如何在不重置ram的情况下修复它让用户从键盘上写字。

data segment
    ; add your data here! 
    msg db ? 
    nxtline db 10,13,'$'
ends

stack segment
    dw   128  dup(0)
ends

code segment
start:
; set segment registers:
    mov ax, data
    mov ds, ax
    mov es, ax

    ; add your code here
    xor ax,ax
    mov ah,1        
    xor bx,bx 
    mov bx,offset msg
    ifpressed:
    ;pusha 
    mov ah,1
    int 21h   
    cmp al,0Dh  ;check when enter is pressed
    jz nextline
    mov [bx],al
    add bx,2 
    ;popa 
    jmp ifpressed

    nextline:
     lea dx, nxtline
     mov ah, 9
     int 21h
     jmp ifpressed
    reapet:



    mov ax, 4c00h ; exit to operating system.
    int 21h    
ends

end start ; set entry point and stop the assembler.
  `

2 个答案:

答案 0 :(得分:2)

  

...但每次按下输入它都会排成一行......

这正是该计划的创建目的。 如果您不希望发生这种情况,请从程序中删除接下来的两行:

cmp al,0Dh  ;check when enter is pressed
jz nextline

或保留这2行但改变 nxtline的定义(删除13):

nxtline db 10,'$'

答案 1 :(得分:0)

它对我的BIOS中断汇编程序不起作用,我认为它对dos汇编程序有效。 尝试通过如下更改dl和dh寄存器来手动更改列和行:

Prompt: mov si, PromptChar
         mov ah, 2
         mov dh, 15  # change row to 15
         mov dl, 0   # change column to 0
         int 10h
         lodsb
         mov ah, 9
         int 10h
         jmp short End