From: Shamus Hammons Date: Sun, 16 Apr 2017 17:53:35 +0000 (-0500) Subject: Fix for bug #88 (allow DS in all sections). X-Git-Tag: v2.1.0~143 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=0d4ab16ff12046dfaf5f51dc0add2a9bbe777573 Fix for bug #88 (allow DS in all sections). --- 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__