From a3cba2411dbc8016ea47b5bd715865659ff306bd Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Mon, 15 Sep 2003 21:49:25 +0000 Subject: [PATCH] *** empty log message *** --- Makefile | 6 +++--- README | 4 ++-- ref.c | 23 +++++++++++++++++++++++ tbl.c | 23 +++++++++++++++++++++++ trace_queue.c | 23 +++++++++++++++++++++++ 5 files changed, 74 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 6da441b..eccb3fb 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith # Makefile -# $Id: Makefile,v 1.4 2003/09/13 00:54:33 eric Exp $ -# Copyright 2000, 2003 Eric Smith +# $Id: Makefile,v 1.5 2003/09/15 21:49:25 eric Exp $ +# Copyright 2000-2003 Eric Smith # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as @@ -56,7 +56,7 @@ endif # let me know why so I can improve this Makefile. # ----------------------------------------------------------------------------- -VERSION = 0.1 +VERSION = 0.2 PACKAGE = dis6502 diff --git a/README b/README index a6e0f82..c27490b 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith -Copyright 2000, 2003 Eric Smith -$Id: README,v 1.2 2003/09/13 01:04:02 eric Exp $ +Copyright 2000-2003 Eric Smith +$Id: README,v 1.3 2003/09/15 21:47:02 eric Exp $ dis6502 is a flow-tracing disassembler for the 6502, originally written by Robert Bond and supporting Atari binary files. Robert posted dis6502 diff --git a/ref.c b/ref.c index 644543c..879ddb1 100644 --- a/ref.c +++ b/ref.c @@ -1,3 +1,26 @@ +/* + * dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith + * + * $Id: ref.c,v 1.5 2003/09/15 21:49:25 eric Exp $ + * Copyright 2001-2003 Eric Smith + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. Note that permission is + * not granted to redistribute this program under the terms of any + * other version of the General Public License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA + */ + + #include #include diff --git a/tbl.c b/tbl.c index 47603b0..52e9b87 100644 --- a/tbl.c +++ b/tbl.c @@ -1,3 +1,26 @@ +/* + * dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith + * + * $Id: tbl.c,v 1.4 2003/09/15 21:49:25 eric Exp $ + * Copyright 2001-2003 Eric Smith + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. Note that permission is + * not granted to redistribute this program under the terms of any + * other version of the General Public License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA + */ + + #include #include diff --git a/trace_queue.c b/trace_queue.c index bf74eb7..332473c 100644 --- a/trace_queue.c +++ b/trace_queue.c @@ -1,3 +1,26 @@ +/* + * dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith + * + * $Id: trace_queue.c,v 1.2 2003/09/15 21:49:25 eric Exp $ + * Copyright 2000-2003 Eric Smith + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. Note that permission is + * not granted to redistribute this program under the terms of any + * other version of the General Public License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA + */ + + #include #include #include "dis.h"