reactos/ntoskrnl/include/internal/arm/asmmacro.S
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

18 lines
220 B
ArmAsm

//
// @name GENERATE_INT_HANDLER
//
// This macro creates an unexpected interrupt handler.
//
// @param None.
//
// @remark None.
//
.macro GENERATE_ARM_STUB Name
.global &Name
.func &Name
&Name:
b .
.endfunc
.endm