mirror of
https://git.rtems.org/rtems-tools/
synced 2025-06-11 20:19:20 +08:00
24 lines
437 B
C
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 */
|