;****************************************************************************************
 ;                          			*
;****************************************************************************************
;*                                			                                *
;*    Files required:   m0-3.asm (macros)                                          		*
;*                                                                     			*
;*                                                                     			*
;*                                                                     			*
;****************************************************************************************
;*                                                                     			*
;*    Notes:        hardware 								*
;*		         					*
;*                                                                     			*
;****************************************************************************************
	list      p=10F200	; list directive to define processor
	#include  ..\..\m0-3.asm
	config_
 	
#define	OPTIONinit	b'11000100'	; no wakup, no pullup, Clock 1:32
#define TRISIOinit 	b'00001011'	; all ports input bar GP2	
#define GPIOinit 	b'00000000'	; GPIO  all LOW 
;****************************************************************************************

	init_			; reasonable initiation of special function registers 


	cblock	_MINRAM			; start of variables
	 SyS1,SyS2,Count
	endc
#define STACK		_MAXRAM

    eq_  Count,=,.120, lit8
main
    delay .24

	eq_ GPIO,=,GPIO,xor,   byte
    do_ SyS1,=,SyS1,+,.1,      lit8
    goto    main
		end