home *** CD-ROM | disk | FTP | other *** search
- .COMMENTCHAR "*"
- ***************************************
- * This is a sample top level assembly file
- * to include the appropriate pieces from
- * the Small C compiler for the 68HC11.
- *
- ***************************************
- *
- * Map the typical motorola directives to proper TASM syntax
- #include "moto.h"
-
- * Set the starting point for code
- org $1000
-
- *
- * Include users code (from the compiler)
- #include "sc11test.asm"
-
- *
- * Include the library of primitives (compiler support)
- #include "sc11lib.asm"
-
- * That's all folks.
- .end
-
-