home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / RGASM.RAR / ASMCODE.EXE / CHAPT6 / GETDAY.ASM < prev    next >
Encoding:
Assembly Source File  |  1993-05-10  |  381 b   |  15 lines

  1. ;
  2. ;       Program GetDay ( Chapter 6 )
  3. ;
  4. .model  tiny
  5. .code
  6.     org     100h
  7. Beg:    mov     ah,2Ah          ; function 2Ah - get current date
  8.     int     21h             ; DOS service call
  9.     
  10.     mov     ah,4Ch          ; function 4Ch - terminate process
  11.     mov     al,dl           ; return code is equal to day number
  12.     int     21h             ; DOS service call
  13.     
  14.     end     Beg
  15.