summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bennett <sb476@cam.ac.uk>2007-11-16 00:13:50 +0000
committerStuart Bennett <sb476@cam.ac.uk>2007-11-16 01:45:58 +0000
commit5154c73df7017a6a04a497b00c29c7edb5d12c96 (patch)
treec13108b3f32de9a8f6f34ce39eba2679356e6a48
parent0cbb7dd01ad08b150e7cd0d4e7dfadd0c7375598 (diff)
inttool is dead, long live vbtracetool
-rw-r--r--.gitignore4
-rw-r--r--makefile10
-rw-r--r--vbtracetool.c (renamed from inttool.c)18
3 files changed, 16 insertions, 16 deletions
diff --git a/.gitignore b/.gitignore
index 45869ca..e5e2fc7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
*.o
-inttool
-libx86emu.a
+vbtracetool
+*.a
diff --git a/makefile b/makefile
index 4a8f872..1e2f441 100644
--- a/makefile
+++ b/makefile
@@ -32,7 +32,7 @@
TARGETLIB = libx86emu.a
-PROG=inttool
+PROG=vbtracetool
OBJS=\
debug.o \
@@ -43,15 +43,15 @@ ops2.o \
prim_ops.o \
sys.o
-ITOBJS=\
-inttool.o \
+VBTTOBJS=\
+vbtracetool.o \
thunk.o \
x86-common.o
all: $(PROG)
-$(PROG): $(TARGETLIB) $(ITOBJS)
- gcc $(ITOBJS) $(TARGETLIB) -lpci -s -o $(PROG)
+$(PROG): $(TARGETLIB) $(VBTTOBJS)
+ gcc $(VBTTOBJS) $(TARGETLIB) -lpci -s -o $(PROG)
$(TARGETLIB): $(OBJS)
ar r $(TARGETLIB) $(OBJS)
diff --git a/inttool.c b/vbtracetool.c
index e5cad6d..94d9248 100644
--- a/inttool.c
+++ b/vbtracetool.c
@@ -1,13 +1,13 @@
/*
-Run (video) BIOS code for various purposes
-
-Copyright Stuart Bennett <sb476@cam.ac.uk>
-
-Based on vbetool.c, Copyright Matthew Garrett <mjg59@srcf.ucam.org>
-
-This program is released under the terms of the GNU General Public License,
-version 2
-*/
+ * vbtracetool, an execution tracing tool for video biosen
+ *
+ * Copyright 2007 Stuart Bennett <sb476@cam.ac.uk>
+ *
+ * Based on vbetool.c, Copyright Matthew Garrett <mjg59@srcf.ucam.org>
+ *
+ * This program is released under the terms of the GNU General Public License,
+ * version 2
+ */
#include <pci/pci.h>
#include <stdio.h>