Hi, I am having problem in compiling the following code:
Code:
	LIST P=16F676
	__CONFIG H'2007', B'11000000000100'


	ORG	0
	GOTO	5
	ORG	4
	GOTO	5
	ORG	5

	END
The config line is causing the error. The error is the following:
Error[108] C:\D_DRIVE\ASM_LEARNING\16F676\676_ASM.ASM 2 : Illegal character (,)
Halting build on first failure as requested.
----------------------------------------------------------------------
Debug build of project `C:\D_DRIVE\ASM_Learning\16F676\676_ASM.mcp' failed.
Preprocessor symbol `__DEBUG' is defined.
Sat Jul 23 19:48:06 2011
----------------------------------------------------------------------
BUILD FAILED
I am using MPLAB IDE V8.15. I am trying to learn ASM and this is my first shot at it.
Thanks