简单的8086汇编字符串数组和打印

时间:2015-12-05 03:16:27

标签: arrays assembly x86-16 dosbox

我必须为我的Assembly类编写一个程序,允许用户输入他/她的全名,程序然后利用和数组存储字符并按以下顺序打印:“LastName”,“Middle” (可选,并且可以有多个中间名“”First“。我已经让我的程序几乎要这样做,除了它在姓氏的开头打印出'$'。我试过递增索引(bx)但是然后它给了我一个乱码的输出。我对汇编很新,所以请耐心等待。我在想当我增加索引时,我的宏可能会干扰我的输出。还请我的格式化。我永远无法正确传输代码提前致谢!

这是我的代码:

       ;This Program Reads in a user's full name and prints out the results in the format 
        'Lastname', 'Middle'(Optional), First using an array. 

 include pcmac.inc
.MODEL SMALL
    .586  ;Allows Pentium instructions. Must come after .MODEL

    .STACK 100h

    .DATA
 MAXBUF EQU 100
 GetBuf DB MAXBUF
 GetCnt DB ?
 CharStr DB  MAXBUF DUP (?)
 Message DB 'Enter your full name',10,13,'$'
 Message2 DB 'Here is your name in the correct format', 10,13,'$'
 Count DB 0

    .CODE
Array PROC  
    _Begin
    _PutStr Message
    _GetStr GetBuf


mov bl, GetCnt
sub bh,bh

   FindLast:

   cmp [CharStr+bx],32
   je SeperateLast
   dec bx
   inc Count        ;Counter to record how long the lastname is
   jmp FindLast



  SeperateLast:

     mov [CharStr+bx],'$'
    _PutStr Message2
    jmp Printlast



 FirstName:

     _PutCh ',',32              ;Add comma and space for readability
     _PutStr CharStr            ;Print up to the inputted dollar sign
     _PutCh 10,13

     jmp Done


   Printlast:

      cmp Count,0    
      je FirstName
      _PutCh[CharStr+bx]           ;Print Last Name Character by Character
      inc bx
      dec Count
      jmp Printlast

Done:


     _Exit 0
         Array ENDP

              END Array

1 个答案:

答案 0 :(得分:0)

从我在您的代码中看到的内容,您似乎正确地找到了姓氏。由于姓氏前面的空格代表First和Middle名称的结尾,因此在姓氏之前用$符号替换空格是有意义的。由于 BX 是您刚刚输入的美元符号的偏移量,因此您应该将 BX 增加1来跳过它。然后,您还需要将Count变量减1。

此代码:

mov [CharStr+bx],'$'
_PutStr Message2
jmp Printlast

应该是这样的:

mov [CharStr+bx],'$'
inc bx
dec Count
_PutStr Message2
jmp Printlast