We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
How to define TH2 and TL2 as a int I tried using data unsigned int Count _at_ 0xCD but it is giving error C274
"How to define TH2 and TL2 as a int"
What do you mean by that?
An int in C51 is 16 bits; TH2 and TL2 are each 8 bits, so they can't be ints, can they?
Or do you mean that you want TH2+TL2 together to be a single int? If so, have you looked at the sfr16 keyword extension?
"I tried using data unsigned int Count _at_ 0xCD
That won't work - SFRs aren't in the DATA space, are they?