.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 (for the first version)
ORG $0680 ;start of user EPROM (change this for a new version)
#include 'init.asm' ;Initialization of the processor and main program
#include 'leds.asm' ;Toggle routines for the two LEDs
#include 'mcan_int.asm' ;Interrupt routine CAN-interface
#include 'sci_int.asm' ;Interrupt routine serial interface
#include 'ext_int.asm' ;Interrupt routine external interrupt
#include 'int_tab.asm' ;Interrupt routines table
******************************************************************************************************