home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / msysjour / ms / s12349 / test_hi.asm < prev    next >
Assembly Source File  |  1989-06-07  |  512b  |  27 lines

  1. ; these two extra segments are retained even afetr the initialization is
  2. ; completed.
  3.  
  4.  
  5. HIGH_DATA       SEGMENT WORD PUBLIC 'FAR_DATA'
  6.  
  7. Count    DW    0
  8.  
  9. HIGH_DATA       ENDS
  10.  
  11.  
  12.  
  13. HIGH_CODE       SEGMENT WORD PUBLIC 'FAR_CODE'
  14.  
  15. HighTimer       PROC    FAR
  16.                 PUBLIC  HighTimer
  17.  
  18.     inc     ds:count                              ; increment the count
  19.                                                   ;
  20.     ret
  21.  
  22. HighTimer       ENDP
  23.  
  24. HIGH_CODE       ENDS
  25.  
  26.                 END
  27.