From 4d287201b92628a009d49f4094ac6154df0a0656 Mon Sep 17 00:00:00 2001 From: DarkSharpness <2040703891@qq.com> Date: Thu, 11 Jul 2024 22:16:24 +0800 Subject: [PATCH] feat(tool): add a header to include all the utilities --- include/template.h | 0 include/tools | 17 +++++++++++++++++ 2 files changed, 17 insertions(+) delete mode 100644 include/template.h create mode 100644 include/tools diff --git a/include/template.h b/include/template.h deleted file mode 100644 index e69de29..0000000 diff --git a/include/tools b/include/tools new file mode 100644 index 0000000..7873af4 --- /dev/null +++ b/include/tools @@ -0,0 +1,17 @@ +#pragma once +#include "bit.h" +#include "bit_impl.h" +#include "wire.h" +#include "register.h" +#include "synchronize.h" +#include "operator.h" + +using dark::Bit; +using dark::sign_extend; +using dark::zero_extend; + +using dark::Wire; +using dark::Register; + +using dark::SyncTags; +using dark::sync_member;