summaryrefslogblamecommitdiffstats
path: root/tester/covoar/qemu-log.h
blob: e9c89dcd70459072876a8c8f641043b52bb4caea (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                         

                            



                       

/*
 * 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;
  std::string   instruction;
  std::string   data;
}  QEMU_LOG_IN_Block_t;


#endif /* QEMU_LOG_H */