This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How access assembler bit variable from C program?

I have in assembler code define one bit variable:

BSEG       AT      21h
BUS_GRESKA: DBIT 1

how I can access this bit in C code ? I try with

extern bit BUS_GRESKA

and then

BUS_GRESKA=1;

or

BUS_GRESKA=0;

but not work?Why?

Thank you

0