source: rtems-tools/tester/covoar/qemu-log.h @ 100f517

4.104.115
Last change on this file since 100f517 was 100f517, checked in by Chris Johns <chrisj@…>, on 05/09/14 at 11:50:37

covoar: Merger the covoar source from rtems-testing.git.

Use waf to build covoar.

  • Property mode set to 100644
File size: 437 bytes
Line 
1
2/*
3 * Qemu log file format.
4 */
5
6#ifndef QEMU_LOG_H
7#define QEMU_LOG_H
8
9#define QEMU_LOG_SECTION_END    "----------------"
10#define QEMU_LOG_IN_KEY         "IN: "
11
12/*!
13 *   This structure breaks apart the log line information
14 *   into the components address, instruction and data.
15 */
16typedef struct {
17  unsigned long address;
18  char          instruction[10];
19  char          data[20];
20}  QEMU_LOG_IN_Block_t;
21
22
23#endif /* QEMU_LOG_H */
Note: See TracBrowser for help on using the repository browser.