16-bit Addition Assembly Language Program | .asm | Microprocessor | CS | Computer Science Subjects - Helpwalaa - Free IT Updates & Opportunities

New Updates

16-bit Addition Assembly Language Program | .asm | Microprocessor | CS | Computer Science Subjects

16-bit Addition Assembly Language Program | .asm | Microprocessor

.model small
.stack 100
.data
 
 no1 dw 1122h
 no2 dw 2244h
 result dw ?
 carry db 00h

.code

  mov ax,@data
  mov ds,ax

  mov bx,no1
  add bx,no2
  mov result,bx

      jnc next
      mov carry,01h
next: mov ah,4ch
      int 21h
      end 

16-bit addition, 8086 programs, Assembly language Programming, Assembly language Programs 

Most Popular