summaryrefslogtreecommitdiffstats
path: root/covoar/qemu-log.h
blob: cbca05e6fa9466d8ad4a13db03d5fb43db46a77b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

/*
 * 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 */