home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 April / CHIP4_98.ISO / software / ccconrad / basic.exe / CHIP / Assembler / TASM / SC11MAIN.ASM < prev    next >
Encoding:
Assembly Source File  |  1994-12-05  |  560 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.