home *** CD-ROM | disk | FTP | other *** search
/ PCMania 64 / PCMania CD64_1.iso / phy / phy006 / lowlevel / sine.asm < prev    next >
Encoding:
Assembly Source File  |  1997-05-22  |  260 b   |  30 lines

  1.     .model    tiny
  2.     .386
  3.     .code
  4.     org    100h
  5.  
  6. start:
  7.     mov    al,13h
  8.         int     10h
  9.  
  10.     mov    bh,0a2h
  11.     mov    ds,bx
  12. drawsine:
  13.  
  14.     sub    cx,si
  15.     movsx    di,ch
  16.     add    si,di
  17.  
  18.     mov    [bx+di],bh
  19.  
  20.     sub    bx,320
  21.     jnc    drawsine
  22.  
  23.     ;xor    ah,ah
  24.     int    16h
  25.  
  26.     ret
  27.  
  28. end    start
  29.  
  30.