Here's what error 212 means (from the help file "PM.TXT" in the PBP folder):
212 Extra Tokens on End of Line
Some initial portion of the current line assembled correctly, but
additional assembly tokens remain unprocessed. This is often the result of
a syntax error (extra parameters, misplaced or missing punctuation, etc.).
Code is generated for the correct initial portion of the line.
And here's the cause...
Code:
@ DEVICE PIC16F88 INTRC_OSC, WDT_OFF, MCLR_OFF, BOD_ON
There should be a comma after "PIC16F88"...
@ DEVICE PIC16F88, INTRC_OSC, WDT_OFF, MCLR_OFF, BOD_ON
There's still the issue of never getting to the "Display" subroutine though.
Arch
Last edited by Archilochus; - 20th June 2006 at 02:40.
"Data sheets? I ain't got no data sheets. I don't need no data sheets. I don't have to read any stinking data sheets!"
Bookmarks