I am able to compile it now but it is not working. I am using Proteus 7.9 software to simulate it but
Is something wrong with the code?
Code:
	LIST P=16F676
	#include <p16F676.inc>
	__CONFIG   _CP_OFF & _CPD_OFF & _BODEN_OFF & _MCLRE_ON & _WDT_OFF & _PWRTE_ON & _INTRC_OSC_NOCLKOUT

	ORG	0
	GOTO	5
	ORG	4
	GOTO	5
	ORG	5

	CLRF	H'07'
	BSF	H'03',5
	CLRF	H'07'
	CLRF	H'91'
	BCF	H'03',5

	BSF	H'07',4
	BSF	H'07',5
	BSF	H'07',2
	BSF	H'07',3

	END