• accessing local "c" variables in inline assembly
    How do I access a local variable in assembly? I have used the SRC to determine how the compiler created the variable. it changes it's name from variable to variable?nnn where nnn is a number. ...
  • accessing local "c" variables in inline assembly
    How do I access a local variable in assembly? I have used the SRC to determine how the compiler created the variable. it changes it's name from variable to variable?nnn where nnn is a number. ...
  • 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; ...
  • 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; ...
  • Problem about access variables from assembler in large mode
    I define a public variable as pointer array like 'unsigned char idata * OSTsakStackBotton[OS_MAX_TASKS+1];' And I declare it in asm file as 'EXTRN DATA (OSTsakStackBotton)' and access it in this file...