summaryrefslogtreecommitdiffstats
path: root/covoar/qemu-log.h
blob: d6568975ca01282949c764967c0081861e9f82ff (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
24
25
26
27
/*
 *  $Id$
 */


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