diff options
Diffstat (limited to 'frontend/bundle.h')
| -rw-r--r-- | frontend/bundle.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/bundle.h b/frontend/bundle.h new file mode 100644 index 0000000..cc6f441 --- /dev/null +++ b/frontend/bundle.h | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "infra/pipetrace.h" | ||
| 4 | #include "memory/line.h" | ||
| 5 | |||
| 6 | namespace frontend { | ||
| 7 | struct bundle { | ||
| 8 | infra::transaction transaction; | ||
| 9 | unsigned int generation; | ||
| 10 | std::uint64_t line_address; | ||
| 11 | std::uint64_t next_line_address; | ||
| 12 | memory::line data; | ||
| 13 | }; | ||
| 14 | } | ||
