5222f12a32
r27530 - allow faults with ints disabled if there is a handler r27648 - call the end-of-interrupt thread callback r27718 - add <asm_defs.h>, not used yet r27722 - register the commpage as image and symbols (but we don't use it yet) - remove dupped call to thread_get_current_thread() - use 16MB iospace for now, 4MB seems too small. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27999 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
498 B
C
18 lines
498 B
C
/*
|
|
* Copyright 2008, François Revol, revol@free.fr.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef SYSTEM_ARCH_M68K_ASM_DEFS_H
|
|
#define SYSTEM_ARCH_M68K_ASM_DEFS_H
|
|
|
|
|
|
#define SYMBOL(name) .global name; name
|
|
#define SYMBOL_END(name) 1: .size name, 1b - name
|
|
#define STATIC_FUNCTION(name) .type name, @function; name
|
|
#define FUNCTION(name) .global name; .type name, @function; name
|
|
#define FUNCTION_END(name) 1: .size name, 1b - name
|
|
|
|
|
|
#endif /* SYSTEM_ARCH_M68K_ASM_DEFS_H */
|
|
|