albus
Junior Member level 2
- Joined
- Dec 26, 2010
- Messages
- 22
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,458
In the code given below I'm declaring 5 boolean variables using CCS Compiler. The code compiles okay.
When I try to simulate it using Proteus, I see that Proteus accepts their data types as strings. Something funny is going on here, do you have any idea?
Code:
int1 EnterButton=0; // Interrupt flag for enter button
int1 UpButton=0; // Interrupt flag for up button
int1 DownButton=0; // Interrupt flag for down button
int1 LeftButton=0; // Interrupt flag for left button
int1 RightButton=0; // Interrupt flag for right button
When I try to simulate it using Proteus, I see that Proteus accepts their data types as strings. Something funny is going on here, do you have any idea?