Hi, I'm trying to define a bit variable at a specific bit location. I tried the following without succes:
BSEG AT 02FH.7 MYBIT: DBIT 1
TEST_BIT SEGMENT BIT RSEG TEST_BIT MYBIT: DBIT 1
DSEG AT 02FH MYBIT8: DS 1 sbit MYBIT=MYBIT8^7;
I have never tried this, but it could be that BSEG needs a regular numeric address like this:
BSEG AT 07FH MYBIT: DBIT 1
Graham,