URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [newlib/] [newlib/] [newlib/] [libc/] [machine/] [sh/] [asm.h] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
#ifdef __STDC__ # define _C_LABEL(x) _ ## x #else # define _C_LABEL(x) _/**/x #endif #define _ASM_LABEL(x) x #define _ENTRY(name) \ .text; .align 2; .globl name; name: #define ENTRY(name) \ _ENTRY(_C_LABEL(name))
Go to most recent revision | Compare with Previous | Blame | View Log