.pagewidth 140t
.pagelength 117t
******************************************************************************************************
* Studienarbeit Christopher Odenbach *
* *
* WS98/99 *
* *
* mit Dank an Willi *
******************************************************************************************************
******************************************************************************************************
* MOTOROLA MC68HC705X32 *
* *
* Assembler Start Script *
* *
* Aufruf mit 'casm05 assembl L S C I D' *
* *
* *
* *
******************************************************************************************************
#include 'equates.asm' ;Declaration of variables
* ORG $0400 ;start of user EPROM (first version)
ORG $25E0 ;start of user EPROM (change this for new versions)
#include 'init.asm' ;Initialization of the processor and main program
#include 'table.asm' ;Subroutines for table handling
#include 'print.asm' ;Subroutines for printing to serial interface
#include 'mcan_int.asm' ;Interrupt routine CAN-interface
#include 'sci_int.asm' ;Interrupt routine serial interface
#include 'int_tab.asm' ;Interrupt routines table
******************************************************************************************************