home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / amiga-flight / programs / easy.asm < prev    next >
Assembly Source File  |  1977-12-31  |  2KB  |  29 lines

  1. *****************************************************************************
  2. ***                              EASY.ASM                                 ***
  3. ***                                                                       ***
  4. ***    Author : Alan James                                                ***
  5. ***    Date   : January 1993                                              ***
  6. ***    Desc.  : This program simply oututs the character 'A'.             ***
  7. ***                                                                       ***
  8. ***                          ©XCNT, 1992-1994.                            ***
  9. *****************************************************************************
  10.  
  11.  
  12. *****************************************************************************
  13. ***                              Includes                                 ***
  14. *****************************************************************************
  15.  
  16.         include    "subrts.h"    Included by default anyway
  17.  
  18. *****************************************************************************
  19. ***                              Main routine                             ***
  20. *****************************************************************************
  21.  
  22.         move.b    #'A',d0        Set d0 to 'A'
  23.         jsr    OUTCH        Call OUTCH routine
  24.         rts            Exit
  25.  
  26. *****************************************************************************
  27. ***                         End of file EASY.ASM.                         ***
  28. *****************************************************************************
  29.