From 2b6c4164085f974bbe6889e0c90582ae94996964 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Sat, 22 Aug 2020 15:29:13 +0200 Subject: [PATCH] Prepare for development after released version. --- CHANGES | 3 +++ Makefile | 2 +- macro11.h | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index d6550cb..6dbc156 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +??.??.20??: Rhialto + version 0.6: + 25.04.2020: Rhialto version 0.5: - Fixed bug with checking addressing mode for JSR and bugs diff --git a/Makefile b/Makefile index 73662dd..a840093 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ WARNS ?= -Wall -Wshadow -Wextra -pedantic -Woverflow -Wstrict-overflow OBJFORMAT = -DDEFAULT_OBJECTFORMAT_RT11=0 -CFLAGS ?= -O -ggdb -std=gnu99 $(WARNS) $(OBJFORMAT) +CFLAGS ?= -O2 -ggdb -std=gnu99 $(WARNS) $(OBJFORMAT) MACRO11_SRCS = macro11.c \ assemble.c assemble_globals.c assemble_aux.c \ diff --git a/macro11.h b/macro11.h index 623abc6..cee2808 100644 --- a/macro11.h +++ b/macro11.h @@ -3,12 +3,12 @@ #include "git-info.h" -#define BASE_VERSION "0.5" +#define BASE_VERSION "0.6wip" #if defined(GIT_VERSION) #define VERSIONSTR BASE_VERSION" ("GIT_VERSION"\n\t"GIT_AUTHOR_DATE")" #else -#define VERSIONSTR BASE_VERSION" (25 March 2020)" +#define VERSIONSTR BASE_VERSION" (xx xxxxx 20xx)" /*#define VERSIONSTR "0.3 (April 21, 2009)" */ /*#define VERSIONSTR "0.2 July 15, 2001" */ #endif