commit 30e4364edc12c27c01fee21dcf776020ecf2cb14 Author: yash modi <yash3108m@gmail.com> Date: Mon, 23 Mar 2026 10:00:00 +0530 Week 1: Define Verilog Emitter headers (Part 1: Initial definitions) Diffstat:
| A | src/emitter.h | | | 17 | +++++++++++++++++ |
1 file changed, 17 insertions(+), 0 deletions(-)
diff --git a/src/emitter.h b/src/emitter.h @@ -0,0 +1,17 @@ +#ifndef EMITTER_H +#define EMITTER_H + +#include <vector> +#include <string> +#include <memory> +#include "nfa.h" + +#include <filesystem> +#include <system_error> + +class Emitter +{ +public: + Emitter() = delete; // Static class, no instances + + /**