CS350 COS
COS
Loading...
Searching...
No Matches
asm.h
Go to the documentation of this file.
1/*
2 * Assembly Macros
3 */
4
5#define FUNC_BEGIN(fname) .p2align 4, 0x90; .global fname; \
6 .type fname, @function; \
7 fname:
8
9#define FUNC_END(fname) .size fname, . - fname
10