Adding Id and Rev property to all files

This commit is contained in:
Stanislav Shwartsman 2011-02-24 22:05:47 +00:00
parent 7d80a6ebe0
commit 00981cd7a6
243 changed files with 258 additions and 258 deletions

View File

@ -438,7 +438,7 @@ tar:
NAME=`pwd|$(SED) 's/.*\///'`; (cd ..; $(RM) -f $$NAME.zip; tar cf - $$NAME | $(GZIP_BIN) > $$NAME.tar.gz); ls -l ../$$NAME.tar.gz
zip:
NAME=`pwd|$(SED) 's/.*\///'`; (cd ..; $(RM) -f $$NAME-msvc-src.zip; $(ZIP) $$NAME-msvc-src.zip -r $$NAME -x \*CVS\* -x \*.cvsignore ); ls -l ../$$NAME-msvc-src.zip
NAME=`pwd|$(SED) 's/.*\///'`; (cd ..; $(RM) -f $$NAME-msvc-src.zip; $(ZIP) $$NAME-msvc-src.zip -r $$NAME -x \*CVS\* -x \*.cvsignore -x \*.svn\* ); ls -l ../$$NAME-msvc-src.zip
clean:
@RMCOMMAND@ *.o

View File

@ -1,5 +1,5 @@
/*
* $Id: biossums.c,v 1.5 2010-01-18 20:04:44 sshwarts Exp $
* $Id$
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: rombios.c,v 1.257 2011-01-26 09:52:02 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002 MandrakeSoft S.A.
@ -892,7 +892,7 @@ Bit16u cdrom_boot();
#endif // BX_ELTORITO_BOOT
static char bios_cvs_version_string[] = "$Revision: 1.257 $ $Date: 2011-01-26 09:52:02 $";
static char bios_cvs_version_string[] = "$Revision$ $Date$";
#define BIOS_COPYRIGHT_STRING "(c) 2002 MandrakeSoft S.A. Written by Kevin Lawton & the Bochs team."

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: rombios.h,v 1.16 2010-05-16 14:35:22 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2006 Volker Ruppert

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: rombios32.c,v 1.71 2010-05-16 14:35:22 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// 32 bit Bochs BIOS init code

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: usage.cc,v 1.5 2009-02-08 09:05:51 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 MandrakeSoft S.A.

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: bochs.h,v 1.256 2010-09-20 20:43:16 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2010 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dbg_main.cc,v 1.240 2011-02-11 09:56:23 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: debug.h,v 1.66 2011-02-11 09:56:23 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1169,7 +1169,7 @@ char *bxtext;
#line 1 "lexer.l"
#line 2 "lexer.l"
/////////////////////////////////////////////////////////////////////////
// $Id: lexer.c,v 1.44 2010-01-05 13:59:08 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#include <stdlib.h>

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: linux.cc,v 1.11 2009-10-29 15:49:50 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
#include <stdio.h>

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: symbols.cc,v 1.18 2009-12-04 16:53:11 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: syscalls-linux.h,v 1.2 2009-12-04 16:53:11 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: config.cc,v 1.224 2011-02-12 17:50:48 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: crc.cc,v 1.2 2008-04-07 18:48:11 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// I grabbed these CRC routines from the following source:

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dis_decode.cc,v 1.56 2010-05-23 19:17:41 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dis_groups.cc,v 1.55 2010-11-23 15:42:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dis_tables.h,v 1.46 2010-07-22 15:12:07 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2010 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dis_tables.inc,v 1.37 2010-10-11 15:33:11 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2010 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dis_tables_sse.inc,v 1.11 2010-05-23 20:30:23 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2010 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: dis_tables_x87.inc,v 1.1 2010-02-08 15:13:39 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2010 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: disasm.h,v 1.63 2010-07-22 15:12:07 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: opcodes.inc,v 1.41 2010-10-11 15:33:11 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: resolve.cc,v 1.21 2010-02-01 07:59:22 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: syntax.cc,v 1.16 2010-02-01 07:59:22 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2005-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: extplugin.h,v 1.5 2011-01-23 20:21:21 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// extplugin.h

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: vga.bitmap.h,v 1.6 2009-12-04 16:53:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: control_w.h,v 1.12 2009-10-14 20:45:29 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: ferr.cc,v 1.19 2009-10-14 20:45:29 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu.cc,v 1.66 2010-11-23 15:42:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu_arith.cc,v 1.24 2010-02-25 22:04:31 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu_compare.cc,v 1.30 2010-11-11 15:48:56 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu_const.cc,v 1.20 2010-02-25 22:04:31 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu_load_store.cc,v 1.41 2010-10-18 22:19:45 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu_misc.cc,v 1.24 2010-02-25 22:04:31 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu_tags.cc,v 1.11 2009-10-14 20:45:29 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: fpu_trans.cc,v 1.29 2010-03-22 22:11:00 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: status_w.h,v 1.14 2009-10-14 20:45:29 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: tag_w.h,v 1.10 2009-10-14 20:45:29 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2003-2009 Stanislav Shwartsman

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: gdbstub.cc,v 1.43 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2006 The Bochs Project Team

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: amigagui.h,v 1.6 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#include <exec/types.h>

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: amigaos.cc,v 1.29 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2000-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: beos.cc,v 1.37 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: cdromd.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_CDROMD_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: copy.h,v 1.2 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_COPY_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: floppya.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_FLOPPYA_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: floppyb.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_FLOPPYB_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: mouse.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_MOUSE_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: paste.h,v 1.2 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_PASTE_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: power.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_POWER_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: reset.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_RESET_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: saverestore.h,v 1.2 2006-06-07 19:40:15 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_SAVE_RESTORE_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: snapshot.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_SNAPSHOT_BMAP_X 32

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: userbutton.h,v 1.3 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
#define BX_USER_BMAP_X 32

View File

@ -1,5 +1,5 @@
////////////////////////////////////////////////////////////////////////
// $Id: carbon.cc,v 1.44 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: enh_dbg.cc,v 1.31 2010-12-06 21:52:41 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// BOCHS ENHANCED DEBUGGER Ver 1.2

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: enh_dbg.h,v 1.16 2010-02-28 14:52:17 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// BOCHS ENHANCED DEBUGGER Ver 1.2

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: gtk_enh_dbg_osdep.cc,v 1.13 2010-03-02 07:07:57 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// BOCHS ENHANCED DEBUGGER Ver 1.2

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: gui.cc,v 1.119 2011-01-24 20:35:50 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: gui.h,v 1.64 2010-05-18 15:33:41 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: icon_bochs.h,v 1.6 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: keymap.cc,v 1.28 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: keymap.h,v 1.14 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: macintosh.cc,v 1.33 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: nogui.cc,v 1.31 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: paramtree.cc,v 1.1 2010-09-16 21:46:45 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2010 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: paramtree.h,v 1.1 2010-09-16 21:46:45 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2010 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: rfb.cc,v 1.68 2010-05-18 15:33:41 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2000 Psyon.Org!

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: rfb.h,v 1.9 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2000-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: rfbkeys.h,v 1.1 2009-06-03 17:05:22 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: sdl.cc,v 1.91 2010-05-18 15:33:41 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: sdl.h,v 1.9 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: sdlkeys.h,v 1.4 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
// This file is simply a list of SDL key symbols taken from <SDL/SDL_keysym.h>.

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: siminterface.cc,v 1.217 2010-12-23 16:16:17 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: siminterface.h,v 1.257 2010-12-23 16:16:17 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: svga.cc,v 1.21 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: term.cc,v 1.46 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2000-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: textconfig.cc,v 1.89 2011-02-12 17:50:48 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: textconfig.h,v 1.10 2009-03-04 18:20:44 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: wenhdbg_res.h,v 1.3 2009-01-31 10:04:25 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// BOCHS ENHANCED DEBUGGER Ver 1.2

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: win32.cc,v 1.143 2011-01-25 15:49:32 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: win32_enh_dbg_osdep.cc,v 1.22 2010-11-13 13:00:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// BOCHS ENHANCED DEBUGGER Ver 1.2

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: win32dialog.cc,v 1.92 2010-07-03 05:34:27 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: win32dialog.h,v 1.22 2011-02-11 14:23:30 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: win32paramdlg.cc,v 1.20 2011-02-10 22:59:34 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 Volker Ruppert

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: win32paramdlg.h,v 1.4 2009-03-26 17:57:20 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 Volker Ruppert

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////
// $Id: wx.cc,v 1.105 2010-05-18 15:33:41 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////
// $Id: wxdialog.cc,v 1.116 2010-11-19 18:42:11 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////
// Define BX_PLUGGABLE in files that can be compiled into plugins. For

View File

@ -1,5 +1,5 @@
////////////////////////////////////////////////////////////////////
// $Id: wxdialog.h,v 1.78 2010-07-03 05:34:27 vruppert Exp $
// $Id$
////////////////////////////////////////////////////////////////////
// wxWidgets dialogs for Bochs

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////
// $Id: wxmain.cc,v 1.164 2010-02-26 14:18:18 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////
//
// Copyright (C) 2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////
// $Id: wxmain.h,v 1.61 2009-12-04 20:02:12 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////
// This file defines variables and classes that the wxWidgets .cc files

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: x.cc,v 1.133 2011-02-10 23:00:56 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: acpi.cc,v 1.25 2009-04-23 15:52:53 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2006 Volker Ruppert

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: acpi.h,v 1.9 2009-02-08 09:05:52 vruppert Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2006 Volker Ruppert

View File

@ -1,6 +1,6 @@
//
// iodev/aspi-win32.h
// $Id: aspi-win32.h,v 1.3 2010-03-06 21:41:26 sshwarts Exp $
// $Id$
//
// This file was copied from cdrecord 1.9 under libscg/scg/aspi-win32.h.
// The only modification is related to use of the PACKED keyword.

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: biosdev.cc,v 1.19 2009-12-04 19:50:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
////////////////////////////////////////////////////////////////////////
// $Id: biosdev.h,v 1.11 2009-12-04 19:50:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: busmouse.cc,v 1.15 2009-12-04 19:50:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2004-2009 The Bochs Project
@ -61,7 +61,7 @@ bx_busm_c::~bx_busm_c()
void bx_busm_c::init(void)
{
BX_DEBUG(("Init $Id: busmouse.cc,v 1.15 2009-12-04 19:50:26 sshwarts Exp $"));
BX_DEBUG(("Init $Id$"));
DEV_register_irq(BUS_MOUSE_IRQ, "Bus Mouse");

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: busmouse.h,v 1.12 2009-12-04 19:50:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2004-2009 The Bochs Project

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////
// $Id: cdrom.cc,v 1.99 2009-12-04 19:50:26 sshwarts Exp $
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project
@ -521,7 +521,7 @@ cdrom_interface::cdrom_interface(const char *dev)
void cdrom_interface::init(void)
{
BX_DEBUG(("Init $Id: cdrom.cc,v 1.99 2009-12-04 19:50:26 sshwarts Exp $"));
BX_DEBUG(("Init $Id$"));
BX_INFO(("file = '%s'",path));
}

Some files were not shown because too many files have changed in this diff Show More