home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1992 NeXT Computer, Inc. All rights reserved.
- *
- * File: architecture/nrw/reg_help.h
- * Author: Doug Mitchell, NeXT Computer, Inc.
- *
- * m98k-specific macros and inlines for defining machine registers.
- *
- * HISTORY
- * 05-Nov-92 Doug Mitchell at NeXT
- * Created.
- */
-
- #ifndef _ARCH_M98K_REG_HELP_H_
- #define _ARCH_M98K_REG_HELP_H_
-
- #import <architecture/nrw/reg_help.h>
-
- /*
- * Stack pointer must always be a multiple of ???16??? (FIXME)
- */
- #define STACK_INCR 16
- #define ROUND_FRAME(x) ((((unsigned)(x)) + STACK_INCR - 1) & ~(STACK_INCR-1))
-
- #endif _ARCH_M98K_REG_HELP_H_
-