Update the Amiga Intuition window port (AMII/AMIV) for the 3.7 window_procs API. Key changes: - Update all window function signatures for 3.7 - Add assembly trampolines for AmigaOS register-based callbacks - Convert all K&R function definitions to C99 - Add cross-compilation build system (cross-pre1/pre2/post.370) using bebbo's m68k-amigaos-gcc with -noixemul -std=gnu17 -m68000 - Clipping fixes: viewport centering, simplified ScrollRaster, duplicate Ctrl-R suppression, glyph buffer invalidation - Add menucolor support in menu rendering - Move native txt2iff.c and xpm2iff.c to outdated/ - Add nethack.cnf and README.amiga
28 lines
752 B
C
28 lines
752 B
C
/* NetHack 3.6 amistack.c $NHDT-Date: 1432512795 2015/05/25 00:13:15 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
|
|
/* Copyright (c) Janne Salmij�rvi, Tampere, Finland, 2000 */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
/*
|
|
* Increase stack size to allow deep recursions.
|
|
*
|
|
* Note: This is SAS/C specific, using other compiler probably
|
|
* requires another method for increasing stack.
|
|
*
|
|
*/
|
|
|
|
#ifdef __SASC_60
|
|
#include <dos.h>
|
|
#endif
|
|
|
|
/*
|
|
* Increase stack size to allow deep recursions.
|
|
* NetHack 3.7 with Lua needs significantly more stack than 3.6.
|
|
*/
|
|
|
|
#ifdef __SASC_60
|
|
long __stack = 256 * 1024;
|
|
#else
|
|
/* For GCC with -noixemul (libnix), __stack is also recognized */
|
|
unsigned long __stack = 256 * 1024;
|
|
#endif
|