Nhập vào 1 kí tự, xuất kí tự liền trước và sau - ASM x86



[code]
.model small
.stack 100h
.data
  cha    db ?
  str_Nhap    db "Nhap vao mot ki tu: $"
  str_XuatTruoc  db 13,10,"Ki tu lien truoc la: $"
  str_XuatSau  db 13,10,"Ki tu lien sau la: $"
.code
  mov ax, @data
  mov ds, ax
  
  mov dx, offset str_Nhap
  mov ah, 9
  int 21h

  
  mov ah, 01
  int 21h

  mov cha, al

  mov dx, offset str_XuatTruoc
  mov ah, 9
  int 21h

  mov dl, cha
  dec dl
  mov ah, 02h
  int 21h

  mov dx, offset str_XuatSau
  mov ah, 9
  int 21h

  mov dl, cha
  inc dl
  mov ah, 02h
  int 21h


  mov  ah, 4ch
  int 21h
end
[/code]

Nhận xét

Bài đăng phổ biến từ blog này

Đệ quy trong MIPS