diff options
| author | Julian Blake Kongslie | 2022-09-22 11:29:07 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2022-09-22 11:29:07 -0700 |
| commit | eb3fd68203fee7c63245c702914c2acd3332d65a (patch) | |
| tree | 7796707c0372e7fbe4a8bac70aad95f619e8ba29 /frontend/bundle.h | |
| download | procmodel-eb3fd68203fee7c63245c702914c2acd3332d65a.tar.xz | |
Initial commit.
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 | } | ||
