view level1/modules/vectors.asm @ 2786:e333ec1907ef lwtools-port

Updated makefile(s) so correct coco1 dw boot and dwio.sb files are used. Updated level1/coco1/modules/makefile so that boot_dw_coco1 and dwio_coco1.sb get created. Updated level1/coco1/bootfiles/makefile added detection of PORT status so if coco1 is detected then dwio_coco1.sb and boot_dw_coco1 are used in place of dwio.sb and boot_dw.
author drencor-xeen
date Sun, 27 Jan 2013 00:14:03 -0600
parents 9dd4f422aac7
children e93ace49362e
line wrap: on
line source

********************************************************************
* vectors - CoCo ROM vectors
*
* $Id: vectors.asm,v 1.1 2004/04/05 03:34:39 boisy Exp $
*
* These 16 bytes are merged at the end of the ROM image in ROM-based
* NitrOS-9 kernels
*
* Edt/Rev  YYYY/MM/DD  Modified by
* Comment
* ------------------------------------------------------------------

        IFP1
        use     defsfile
        ENDC

        IFGT    Level-1

* NitrOS-9 Level 2 ROM vectors
	fdb	$0000	Reserved
	fdb	$FEEE	SWI3
	fdb	$FEF1	SWI2
	fdb	$FEF4   FIRQ
	fdb	$FEF7   IRQ
	fdb	$FEFA   SWI
	fdb	$FEFD   NMI
	fdb	$8015	RESET

        ELSE

* NitrOS-9 Level 1 ROM Vectors
	fdb	$8015	Reserved
	fdb	$0100	SWI3
	fdb	$0103	SWI2
	fdb	$010F	FIRQ
	fdb	$010C	IRQ
	fdb	$0106	SWI
	fdb	$0109	NMI
	fdb	$8015	RESET

        ENDC