From d4e405e35a5e2a94076b0f882dc9a09f9b695a71 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Sun, 1 Nov 2015 08:53:46 -0600 Subject: [PATCH] Bump version # again. :-) --- direct.c | 84 +++++++++++++++++++++++++++---------------------------- rmac.c | 1 + version.h | 2 +- 3 files changed, 44 insertions(+), 43 deletions(-) diff --git a/direct.c b/direct.c index c4395f6..643f031 100644 --- a/direct.c +++ b/direct.c @@ -22,7 +22,7 @@ #include "kwtab.h" -TOKEN exprbuf[128]; // Expression buffer +TOKEN exprbuf[128]; // Expression buffer SYM * symbolPtr[1000000]; // Symbol pointers table static long unused; // For supressing 'write' warnings char buffer[256]; // Scratch buffer for messages @@ -33,52 +33,52 @@ int (*dirtab[])() = { d_org, // 0 org d_even, // 1 even d_unimpl, // 2 .6502 - d_68000, // 3 .68000 + d_68000, // 3 .68000 d_bss, // 4 bss - d_data, // 5 data - d_text, // 6 text - d_abs, // 7 abs - d_comm, // 8 comm - (void *)d_init, // 9 init - d_cargs, // 10 cargs - (void *)d_goto, // 11 goto - (void *)d_dc, // 12 dc - (void *)d_ds, // 13 ds - d_undmac, // 14 undefmac + d_data, 7// 5 data + d_text, // 6 text + d_abs, // 7 abs + d_comm, // 8 comm + (void *)d_init, // 9 init + d_cargs, // 10 cargs + (void *)d_goto, // 11 goto + (void *)d_dc, // 12 dc + (void *)d_ds, // 13 ds + d_undmac, // 14 undefmac d_gpu, // 15 .gpu d_dsp, // 16 .dsp - (void *)d_dcb, // 17 dcb - d_unimpl, // 18* set - d_unimpl, // 19* reg - d_unimpl, // 20 dump - d_incbin, // 21 .incbin //load - d_unimpl, // 22 disable - d_unimpl, // 23 enable - d_globl, // 24 globl + (void *)d_dcb, // 17 dcb + d_unimpl, // 18* set + d_unimpl, // 19* reg + d_unimpl, // 20 dump + d_incbin, // 21 .incbin //load + d_unimpl, // 22 disable + d_unimpl, // 23 enable + d_globl, // 24 globl d_regbank0, // 25 .regbank0 d_regbank1, // 26 .regbank1 - d_unimpl, // 27 xdef - d_assert, // 28 assert - d_unimpl, // 29* if - d_unimpl, // 30* endif - d_unimpl, // 31* endc - d_unimpl, // 32* iif - d_include, // 33 include - fpop, // 34 end - d_unimpl, // 35* macro - ExitMacro, // 36* exitm - d_unimpl, // 37* endm - d_list, // 38 list - d_nlist, // 39 nlist - d_long, // 40* rept - d_phrase, // 41* endr - d_dphrase, // 42 struct - d_qphrase, // 43 ends - d_title, // 44 title - d_subttl, // 45 subttl - eject, // 46 eject - d_unimpl, // 47 error - d_unimpl, // 48 warn + d_unimpl, // 27 xdef + d_assert, // 28 assert + d_unimpl, // 29* if + d_unimpl, // 30* endif + d_unimpl, // 31* endc + d_unimpl, // 32* iif + d_include, // 33 include + fpop, // 34 end + d_unimpl, // 35* macro + ExitMacro, // 36* exitm + d_unimpl, // 37* endm + d_list, // 38 list + d_nlist, // 39 nlist + d_long, // 40* rept + d_phrase, // 41* endr + d_dphrase, // 42 struct + d_qphrase, // 43 ends + d_title, // 44 title + d_subttl, // 45 subttl + eject, // 46 eject + d_unimpl, // 47 error + d_unimpl, // 48 warn d_noclear, // 49 .noclear d_equrundef, // 50 .equrundef/.regundef d_ccundef, // 51 .ccundef diff --git a/rmac.c b/rmac.c index 27642ec..a8eb72c 100644 --- a/rmac.c +++ b/rmac.c @@ -318,6 +318,7 @@ int Process(int argc, char ** argv) ++errcnt; return errcnt; } + // Enforce Alcyon object format - kind of silly // to ask for .prg output without it! obj_format = ALCYON; diff --git a/version.h b/version.h index 48f7ad0..92dead7 100644 --- a/version.h +++ b/version.h @@ -13,6 +13,6 @@ #define MAJOR 1 // Major version number #define MINOR 3 // Minor version number -#define PATCH 13 // Patch release number +#define PATCH 14 // Patch release number #endif // __VERSION_H__ -- 2.37.2