home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / tools / pcmac / chardemo.asm next >
Assembly Source File  |  1991-05-22  |  232b  |  14 lines

  1. ;CHARDEMO.ASM
  2. ;Demo program for the char directive
  3.     DB "AAA\n\r"
  4. #char 'A','a'
  5.     DB "AAA\n\r"
  6. #char 'A','A'
  7.     DB "AAA\n\r"
  8. #char 65,'A'
  9.     DB "AAA\n\r"
  10. #char 65,65
  11.     DB "AAA\n\r"
  12. #char 'A','a'
  13. ;End of the file CHARDEMO.ASM
  14.