summaryrefslogtreecommitdiff
path: root/covoar/qemu-log.h
diff options
context:
space:
mode:
Diffstat (limited to 'covoar/qemu-log.h')
-rw-r--r--covoar/qemu-log.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/covoar/qemu-log.h b/covoar/qemu-log.h
deleted file mode 100644
index cbca05e..0000000
--- a/covoar/qemu-log.h
+++ /dev/null
@@ -1,23 +0,0 @@
-
-/*
- * Qemu log file format.
- */
-
-#ifndef QEMU_LOG_H
-#define QEMU_LOG_H
-
-#define QEMU_LOG_SECTION_END "----------------"
-#define QEMU_LOG_IN_KEY "IN: "
-
-/*!
- * This structure breaks apart the log line information
- * into the components address, instruction and data.
- */
-typedef struct {
- unsigned long address;
- char instruction[10];
- char data[20];
-} QEMU_LOG_IN_Block_t;
-
-
-#endif /* QEMU_LOG_H */