I need to port some code written with a GCC compiler and inline assembly to its HP Unix equivalent. The situation is that HP CC compiler does not support the _asm keyword and of course the syntax is completely different. I have been looking on the internet for days but I have not found much information. The most I got is some information about the header file inline.h which has all the definitions of some macros that, as I understand, are equivalent to some kind of assembly functions.
I have not found any example that can guide me. All the HP documentation I have found is about Itanium assembly language, which is a completely different architecture from PA-RISC.
Can someone please point me to some online resources about PA-RISC inline assembly with the HP CC compiler? Or at least some examples.