In SX Microcontrollers, SX/B Compiler and SX-Key Tool, bean wrote: Oops, If I would actually READ you are referring to the timer example in the help. What happened is that the SX/B "READ" command now has a requirement that the label be defined before the code that uses it. This is because READ now allows you to use two variables OR a label and a variable. If you didn't define the label before the command it wouldn't know if you had misspelled a variable name, or if it was a label that had not been defined yet. You need to move the data table before the READ command that uses it. Now it's a little more complecated because no code or data can be before the INTERRUPT command. I fixed it like this: '---------------------------------------- INTERRUPT GOTO ISR_Start DigMap: ' digit select map DATA %11111110 DATA %11111101 DATA %11111011 DATA %11110111 ISR_Start: '----------------------------------------------- ---------- End of Message ---------- You can view the post on-line at: http://forums.parallax.com/forums/default.aspx?f=7&p=1&m=85013#m85038 Need assistance? Send an email to the Forum Administrator at forumadmin@parallax.com The Parallax Forums are powered by dotNetBB Forums, copyright 2002-2005 (http://www.dotNetBB.com)