Prepare for development after released version.

This commit is contained in:
Olaf Seibert 2020-08-22 15:29:13 +02:00
parent 9638d527c9
commit 2b6c416408
3 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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 \

View File

@ -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