*** empty log message ***

This commit is contained in:
Eric Smith 2003-09-15 21:49:25 +00:00
parent eca9847e7a
commit a3cba2411d
5 changed files with 74 additions and 5 deletions

View File

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

4
README
View File

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

23
ref.c
View File

@ -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 <eric@brouhaha.com>
*
* 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 <stdint.h>
#include <stdio.h>

23
tbl.c
View File

@ -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 <eric@brouhaha.com>
*
* 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 <stdint.h>
#include <stdio.h>

View File

@ -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 <eric@brouhaha.com>
*
* 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 <stdint.h>
#include <stdio.h>
#include "dis.h"