TianoCore EDK2 master
Loading...
Searching...
No Matches
RiscVImpl.h
Go to the documentation of this file.
1
10#ifndef RISCV_IMPL_H_
11#define RISCV_IMPL_H_
12
14
15#define _ASM_FUNC(Name, Section) \
16 .global Name ; \
17 .section #Section, "ax" ; \
18 .type Name, %function ; \
19 .p2align 2 ; \
20 Name:
21
22#define ASM_FUNC(Name) _ASM_FUNC(ASM_PFX(Name), .text. ## Name)
23
24#endif