Files
rtems-tools/tester/covoar/qemu-log.h
Chris Johns 100f517ab3 covoar: Merger the covoar source from rtems-testing.git.
Use waf to build covoar.
2014-06-18 16:48:08 +12:00

24 lines
437 B
C

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