;
;	Symbol file for Williams System 11 board with 6802
;     by ed@edcheung.com - March 2021
;	========================================
; DOS command: Dasmx -e0xFFFE -t full.bin
;   The "-e" is the code entry point and "-t" is to perform threading
;   ROM image is in "full.bin", and this file needs to be in the same directory for the symbols

cpu		6802	; specify CPU type

;

org 0x8000  	; ROM at CPU address 0x8000

;reset and interrupt vectors
vector		0xfff8	IRQ		irq_handler
vector		0xfffa	SWI		swi_handler
vector 		0xfffc	NMI		nmi_handler
vector		0xfffe	reset	rst_handler
