1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

Set version to 4.0-0 Beta

This commit is contained in:
Mark Pizzolato 2012-12-24 09:23:19 -08:00
parent ab6808d446
commit 34e0523ba8
2 changed files with 15 additions and 0 deletions

3
scp.c
View File

@ -2315,6 +2315,9 @@ if (cptr && (*cptr != 0))
fprintf (st, "%s simulator V%d.%d-%d", sim_name, vmaj, vmin, vpat);
if (vdelt)
fprintf (st, " delta %d", vdelt);
#if defined(SIM_VERSION_MODE)
fprintf (st, " %s", SIM_VERSION_MODE);
#endif
if (flag)
fprintf (st, " [%s, %s, %s]", sim_si64, sim_sa64, sim_snet);
#if defined(SIM_GIT_COMMIT_ID)

View File

@ -27,10 +27,22 @@
#ifndef _SIM_REV_H_
#define _SIM_REV_H_ 0
#ifndef SIM_MAJOR
#define SIM_MAJOR 4
#endif
#ifndef SIM_MINOR
#define SIM_MINOR 0
#endif
#ifndef SIM_PATCH
#define SIM_PATCH 0
#endif
#ifndef SIM_DELTA
#define SIM_DELTA 0
#endif
#ifndef SIM_VERSION_MODE
#define SIM_VERSION_MODE "Beta"
#endif
/*
The comment section below reflects the manual editing process which was in place