From eb3fd68203fee7c63245c702914c2acd3332d65a Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Thu, 22 Sep 2022 11:29:07 -0700 Subject: Initial commit. --- frontend/bundle.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 frontend/bundle.h (limited to 'frontend/bundle.h') 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 @@ +#pragma once + +#include "infra/pipetrace.h" +#include "memory/line.h" + +namespace frontend { + struct bundle { + infra::transaction transaction; + unsigned int generation; + std::uint64_t line_address; + std::uint64_t next_line_address; + memory::line data; + }; +} -- cgit v1.2.3