home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / max / max212 / errors.asm < prev    next >
Assembly Source File  |  1994-01-15  |  798b  |  21 lines

  1. PARAM_COUNT     EQU     80H     ; EQUate
  2. param_area      equ     [81h]   ;   "
  3. ; cr            =       13      ;   "
  4. start_marker:                   ; a label
  5.                 
  6. mov di,offset param_count       ; This makes no sense because
  7.                 ; param_count is not a label.
  8.  
  9. mov di,offset param_area        ; This makes even less sense. 
  10.  
  11. mov di,param_count              ; ok. param_count will be replaced by 80 (hex)
  12.  
  13. mov di,offset start_marker      ; ok. start_marker is a label.
  14.  
  15. db "P.S. Please read the comments in the file ERRORS.ASM",cr   
  16.                 ; remove the (;) from in front of the cr in
  17.                 ; the EQUate to get rid of this error.
  18.  
  19. db      64 dup (0)              ; creates 64 zeros for byte storage space
  20. include vers.asm                ; You may INCLUDE files anywhere you want.
  21.