home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / tasm / ASM_TEST / asm / SC11MAIN < prev    next >
Encoding:
Text File  |  1992-09-03  |  535 b   |  26 lines

  1. .COMMENTCHAR "*"
  2. ***************************************
  3. * This is a sample top level assembly file
  4. * to include the appropriate pieces from 
  5. * the Small C compiler for the 68HC11.
  6. *
  7. ***************************************
  8. *
  9. * Map the typical motorola directives to proper TASM syntax
  10. #include "moto.h"
  11.  
  12. * Set the starting point for code
  13.         org    $1000
  14.  
  15. *
  16. * Include users code (from the compiler)
  17. #include "sc11test.asm"
  18.  
  19. *
  20. * Include the library of primitives (compiler support)
  21. #include "sc11lib.asm"
  22.  
  23. * That's all folks.
  24. .end
  25.  
  26.