summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config.c4
-rw-r--r--src/config.h2
-rw-r--r--src/exit.c4
-rw-r--r--src/exit.h2
-rw-r--r--src/expr.h2
-rw-r--r--src/font.h2
-rw-r--r--src/gfx.h2
-rw-r--r--src/gui.c3
-rw-r--r--src/gui.h2
-rw-r--r--src/main.c1
-rw-r--r--src/memmenu.c4
-rw-r--r--src/memmenu.h2
-rw-r--r--src/util.c4
-rw-r--r--src/util.h4
-rw-r--r--src/z80.c4
-rw-r--r--src/z80.h4
-rw-r--r--src/z80_config.h4
-rw-r--r--src/z80_private.h4
-rw-r--r--src/zx81.c3
-rw-r--r--src/zx81.h2
20 files changed, 15 insertions, 44 deletions
diff --git a/src/config.c b/src/config.c
index 2266f6a..5a2f773 100644
--- a/src/config.c
+++ b/src/config.c
@@ -23,16 +23,12 @@
Config file
*/
-static const char ident[]="$Id$";
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "exit.h"
#include "config.h"
-static const char ident_h[]=EZX81_CONFIG_H;
-
#ifndef TRUE
#define TRUE 1
#endif
diff --git a/src/config.h b/src/config.h
index 4613db3..d7f8967 100644
--- a/src/config.h
+++ b/src/config.h
@@ -25,7 +25,7 @@
*/
#ifndef EZX81_CONFIG_H
-#define EZX81_CONFIG_H "$Id$"
+#define EZX81_CONFIG_H
/* Integer settings
diff --git a/src/exit.c b/src/exit.c
index 3b5e12d..641b6af 100644
--- a/src/exit.c
+++ b/src/exit.c
@@ -23,16 +23,12 @@
Provides a common error exit point
*/
-static const char ident[]="$Id$";
-
#include <stdlib.h>
#include <stdarg.h>
#include "exit.h"
#include <SDL.h>
-static const char ident_h[]=EZX81_EXIT_H;
-
/* ---------------------------------------- EXPORTED INTERFACES
*/
diff --git a/src/exit.h b/src/exit.h
index b3a216b..9d2e3d1 100644
--- a/src/exit.h
+++ b/src/exit.h
@@ -25,7 +25,7 @@
*/
#ifndef EZX81_EXIT_H
-#define EZX81_EXIT_H "$Id$"
+#define EZX81_EXIT_H
/* Exit
diff --git a/src/expr.h b/src/expr.h
index 2c77897..e1194bc 100644
--- a/src/expr.h
+++ b/src/expr.h
@@ -28,7 +28,7 @@
*/
#ifndef EXPR_H
-#define EXPR_H "$Id$"
+#define EXPR_H
/* ---------------------------------------- INTERFACES
*/
diff --git a/src/font.h b/src/font.h
index f7aabbe..4eb8ccd 100644
--- a/src/font.h
+++ b/src/font.h
@@ -25,7 +25,7 @@
*/
#ifndef EZX81_FONT_H
-#define EZX81_FONT_H "$Id$"
+#define EZX81_FONT_H
typedef unsigned char FontChar[64];
diff --git a/src/gfx.h b/src/gfx.h
index 9c3d60b..bd1a040 100644
--- a/src/gfx.h
+++ b/src/gfx.h
@@ -25,7 +25,7 @@
*/
#ifndef EZX81_GFX_H
-#define EZX81_GFX_H "$Id$"
+#define EZX81_GFX_H
#include "SDL.h"
diff --git a/src/gui.c b/src/gui.c
index 153081f..a8b426a 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -23,8 +23,6 @@
Basic GUI routines
*/
-static const char ident[]="$Id$";
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -36,7 +34,6 @@ static const char ident[]="$Id$";
#include "util.h"
#include "exit.h"
-static const char ident_h[]=EZX81_GUI_H;
/* ---------------------------------------- MACROS
*/
diff --git a/src/gui.h b/src/gui.h
index 3744739..6132516 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -25,7 +25,7 @@
*/
#ifndef EZX81_GUI_H
-#define EZX81_GUI_H "$Id$"
+#define EZX81_GUI_H
#include "SDL.h"
diff --git a/src/main.c b/src/main.c
index 521d678..8529d50 100644
--- a/src/main.c
+++ b/src/main.c
@@ -125,7 +125,6 @@ int main(int argc, char *argv[])
"F1 - Help \n"
"F2 - About \n"
"F3 - View ZX81 keyboad \n"
- "F10 - Close all open tape files \n"
"F11 - Memory Menu \n"
"F12 - Toggle onscreen trace ");
break;
diff --git a/src/memmenu.c b/src/memmenu.c
index 609d8bc..0702a58 100644
--- a/src/memmenu.c
+++ b/src/memmenu.c
@@ -23,8 +23,6 @@
Provides the memory menu
*/
-static const char ident[]="$Id$";
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -39,8 +37,6 @@ static const char ident[]="$Id$";
#include <SDL.h>
-static const char ident_h[]=EZX81_MEMMENU_H;
-
#ifndef TRUE
#define TRUE 1
#endif
diff --git a/src/memmenu.h b/src/memmenu.h
index 1caecb5..e49d3d1 100644
--- a/src/memmenu.h
+++ b/src/memmenu.h
@@ -25,7 +25,7 @@
*/
#ifndef EZX81_MEMMENU_H
-#define EZX81_MEMMENU_H "$Id$"
+#define EZX81_MEMMENU_H
#include "z80.h"
diff --git a/src/util.c b/src/util.c
index 8ce2822..9da24d0 100644
--- a/src/util.c
+++ b/src/util.c
@@ -23,8 +23,6 @@
Usual library wrappers and utils
*/
-static const char ident[]="$Id$";
-
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
@@ -32,8 +30,6 @@ static const char ident[]="$Id$";
#include "util.h"
#include "exit.h"
-static const char ident_h[]=ESPEC_UTIL_H;
-
/* ---------------------------------------- MACROS
*/
diff --git a/src/util.h b/src/util.h
index 922f641..9cc3ffb 100644
--- a/src/util.h
+++ b/src/util.h
@@ -24,8 +24,8 @@
*/
-#ifndef ESPEC_UTIL_H
-#define ESPEC_UTIL_H "$Id$"
+#ifndef EZX81_UTIL_H
+#define EZX81_UTIL_H
#include <stdlib.h>
diff --git a/src/z80.c b/src/z80.c
index 36c5793..53d0fbf 100644
--- a/src/z80.c
+++ b/src/z80.c
@@ -31,10 +31,6 @@
#include "z80.h"
#include "z80_private.h"
-static const char ident[]="$Id$";
-static const char ident_z80_header[]=Z80_H;
-static const char ident_z80_private_header[]=Z80_PRIVATE_H;
-
Z80Label *z80_labels=NULL;
/* ---------------------------------------- PRIVATE FUNCTIONS
diff --git a/src/z80.h b/src/z80.h
index 000b950..e1b41b6 100644
--- a/src/z80.h
+++ b/src/z80.h
@@ -20,12 +20,12 @@
-------------------------------------------------------------------------
- $Id$
+ Z80 CPU
*/
#ifndef Z80_H
-#define Z80_H "$Id$"
+#define Z80_H
/* Configuration
*/
diff --git a/src/z80_config.h b/src/z80_config.h
index af36944..7236a4e 100644
--- a/src/z80_config.h
+++ b/src/z80_config.h
@@ -20,12 +20,12 @@
-------------------------------------------------------------------------
- $Id$
+ Z80 Config
*/
#ifndef Z80_CONFIG_H
-#define Z80_CONFIG_H "$Id$"
+#define Z80_CONFIG_H
/* This file defines various compile-time configuration options
diff --git a/src/z80_private.h b/src/z80_private.h
index be45e56..db0c9c2 100644
--- a/src/z80_private.h
+++ b/src/z80_private.h
@@ -20,14 +20,12 @@
-------------------------------------------------------------------------
- $Id$
-
Private macros for Z80
*/
#ifndef Z80_PRIVATE_H
-#define Z80_PRIVATE_H "$Id$"
+#define Z80_PRIVATE_H
#include "z80_config.h"
diff --git a/src/zx81.c b/src/zx81.c
index d6873b5..ffb6453 100644
--- a/src/zx81.c
+++ b/src/zx81.c
@@ -23,8 +23,6 @@
Provides the emulation for the ZX81
*/
-static const char ident[]="$Id$";
-
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
@@ -35,7 +33,6 @@ static const char ident[]="$Id$";
#include "util.h"
#include "exit.h"
-static const char ident_h[]=EZX81_ZX81H;
#ifndef TRUE
#define TRUE 1
diff --git a/src/zx81.h b/src/zx81.h
index ea22343..1c92da0 100644
--- a/src/zx81.h
+++ b/src/zx81.h
@@ -25,7 +25,7 @@
*/
#ifndef EZX81_ZX81H
-#define EZX81_ZX81H "$Id$"
+#define EZX81_ZX81H
#include "z80.h"
#include "SDL.h"