Newer
Older
uwuboot / include / asmfunc.h
@profi200 profi200 on 12 Jun 2017 208 bytes Improve assembly files a bit.
#pragma once

#if !__ASSEMBLER__
	#error Only include this in assembly files!
#endif


.macro ASM_FUNC name
	.section .text.\name, "ax", %progbits
	.global \name
	.type \name %function
	.align 2
\name:
.endm