this is the program to display ascii characters on the screen it is written in assembly language and can work of 8086 microprocessors
.model small
.stack
.data
.code
; program starting
main proc
  mov dl, 00h
lop:    mov ah, 02h
  int
21h
  inc dl
  jnz lop
  mov ax,4c00h
  int 21h
main endp
end main
; end of the program
You might be also interested in:
:: Interfacing Stepper Motor to 8086 using 8255
:: MASM 611 SOFTWARE
::  bit reversal and sorting programs
No comments:
Post a Comment