home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progasm / pcmac.arj / DEMOS / CHARDEMO.ASM next >
Encoding:
Assembly Source File  |  1991-05-22  |  232 b   |  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.