Hi all,
I have a piece of code with the follow call:
...
a = getreg(REG_D1);
...
I tryed to implement it using:
long getreg( int null)
{ register long x __asm("d1");
return x;
}
but seems it doenst work properly...
I have no much idea about registers anyway...
can someone let me know how I must do it ?
Thanks in advance..
Kind regards.