Merge branch 'master' into c_sp

This commit is contained in:
GorillaSapiens
2025-06-13 17:43:06 -07:00
committed by GitHub
61 changed files with 1230 additions and 13 deletions

View File

@@ -158,6 +158,11 @@ DIRLIST = tutorial geos atari2600 atari5200 apple2 gamate lynx supervision sym1
# --------------------------------------------------------------------------
# Lists of executables
EXELIST_agat = \
ascii \
checkversion \
hello \
sieve
EXELIST_apple2 = \
ascii \
@@ -390,6 +395,7 @@ all:
# --------------------------------------------------------------------------
# List of every supported platform
TARGETS := \
agat \
apple2 \
apple2enh \
atari \

View File

@@ -12,7 +12,7 @@
/* Workaround missing clock stuff */
#ifdef __APPLE2__
#if defined(__APPLE2__) || defined(__AGAT__)
# define clock() 0
# define CLOCKS_PER_SEC 1
#endif