From 0d4ab16ff12046dfaf5f51dc0add2a9bbe777573 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Sun, 16 Apr 2017 12:53:35 -0500 Subject: [PATCH] Fix for bug #88 (allow DS in all sections). --- direct.c | 7 ------- version.h | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/direct.c b/direct.c index b2e6799..e9eb8ac 100644 --- a/direct.c +++ b/direct.c @@ -840,13 +840,6 @@ int d_ds(WORD siz) VALUE eval; - // This gets kind of stupid. This directive is disallowed in normal 68000 - // mode ("for your own good!"), but is permitted for 6502 and Alcyon- - // compatibility modes. For obvious reasons, no auto-even is done in 8-bit - // processor modes. - if (as68_flag == 0 && (scattr & SBSS) == 0) - return error(".ds permitted only in BSS"); - if ((siz != SIZB) && (sloc & 1)) // Automatic .even auto_even(); diff --git a/version.h b/version.h index 456a60d..70fe455 100644 --- a/version.h +++ b/version.h @@ -15,7 +15,7 @@ #define MAJOR 1 // Major version number #define MINOR 5 // Minor version number -#define PATCH 1 // Patch release number +#define PATCH 2 // Patch release number #endif // __VERSION_H__ -- 2.37.2