Why, when I input a simbol, like IE0, in the OutPut window, while I'm debuging, appear a message saying: "***error 34: undefined indentifier"?
Did you include a definition for it in your program? If you don't specifically define it, the simulator will not know what it is. Be sure to #include <reg51.h> or another register definitions header file in one file in your project. Jon
I did include the AT89X52.H header file. But it only works, if I use these simbols in code.
Well, you can open the Interrupt Peripheral dialog and change IE from there. Jon
The problem is, that I want to force an Interrupt automatically, using the Tool Box... In my older version, I did this using these bits...
want to force an Interrupt automatically, using the Tool Box... The following will do that. You don't need to change IE0 (which is the interrupt enable register).
define button "Toggle EX0 (P3.2)" , "PORT3 ^= 0x04"