On 5/4/23 12:02, Tom Brennan wrote:
Thanks... I've used __asm with Windows C compilers, so I figured it was available on the mainframe too, but I didn't want to say anything since I didn't know for sure.

We use if extensively. You can use macros but in LE C need to create a static function as there is no generate like Metal/C. For example.

double timeused() {
    uint64_t mics = 0;
    __asm("  IEABRCX DEFINE               \n"
          "  TIMEUSED STORADR=%0,ECT=YES  \n"
          : "=m"(mics) : : "r0", "r1", "r14", "r15");
    return (double)(mics >> 12) / 1000000;
}

static void generate_dsects(void) {
  __asm(" CVT DSECT=YES\n"
        " IHAECVT\n"
        :
        :
        :
    );
}

We have a common code #define for the "IEABRCX DEFINE" which is used in all __asm() blocks. Check out Pete Relson's SHARE presentation for a great reference to using __asm(). It's Metal/C focused but works the same for LE C/C++

https://share.confex.com/share/116/webprogram/Handout/Session8739/s8739pr%20Anaheim2011.pdf



On 4/4/2023 8:17 PM, David Crayford wrote:

It certainly is possible using inline "__asm" blocks. Check out IBM's zoslib which has a really load/call/delete functions that can also AMODE switch

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Reply via email to