a492466dad
use for the asm_offsets.cpp file, so it can be reused elsewhere. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34311 a95241bf-73f2-0310-859d-f6bbb57e9c96
14 lines
342 B
C
14 lines
342 B
C
/*
|
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SYSTEM_COMPUTED_ASM_MACROS_H
|
|
#define _SYSTEM_COMPUTED_ASM_MACROS_H
|
|
|
|
|
|
#define DEFINE_COMPUTED_ASM_MACRO(macro, value) \
|
|
asm volatile("#define " #macro " %0" : : "i" (value))
|
|
|
|
|
|
#endif /* _SYSTEM_COMPUTED_ASM_MACROS_H */
|