Is there a method for using inline assembly AND the variables passed to it? I understand the requirement for using SRC, but it makes things a wee bit unmaintainable. For example:
void test(char value) { char dummy; #pragma asm mov a,value mov dummy,a #pragma endasm }
?_test?BYTE: value?040: DS 1 ORG 1 dummy?041: DS 1 RSEG ?PR?_test?CREDMSGS USING 0 _test: MOV value?040,R7 ; SOURCE LINE # 172 ; { ; SOURCE LINE # 173 ; char dummy; ; ; #pragma asm ; mov a,value mov a,value ; mov dummy,a mov dummy,a ; #pragma endasm ; } ; SOURCE LINE # 180 RET ; END OF _test