home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / TASMSWAN.ZIP / ADDSUB.ASM < prev    next >
Assembly Source File  |  1989-07-10  |  431b  |  39 lines

  1. %TITLE "ADD/SUB/INC/DEC instructions demo"
  2.  
  3.     IDEAL
  4.     DOSSEG
  5.     MODEL    small
  6.     STACK    256
  7.  
  8.     DATASEG
  9.  
  10. exitCode    DB    0    ;if you want comments
  11. count        DW    1       ; buy the book
  12.  
  13.     CODESEG
  14.  
  15. Start:
  16.     mov    ax,@data
  17.     mov    ds,ax
  18.  
  19.     mov     ax,4
  20.     mov    bx,2
  21.     add    ax,bx
  22.  
  23.     mov    cx,8
  24.     mov    cx,[count]
  25.  
  26.     add     [count],cx
  27.  
  28.     inc    [count]
  29.     dec    [count]
  30.     inc    ax
  31.     dec    cx
  32.  
  33. Exit:
  34.     mov    ah,04Ch
  35.     mov    al,[exitCode]
  36.     int     21h
  37.  
  38.     End     Start
  39.