From c2e9eb5abf924903f18c0f3c960185e642b9de76 Mon Sep 17 00:00:00 2001 From: "John W. Terrell" Date: Wed, 24 Sep 2025 16:55:28 -0700 Subject: [PATCH] WIP --- .gitignore | 2 +- .tmux-sessionizer | 3 +++ Makefile | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100755 .tmux-sessionizer diff --git a/.gitignore b/.gitignore index aa1bd37..ec21d0f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ **/target -**/*.bo +**/build diff --git a/.tmux-sessionizer b/.tmux-sessionizer new file mode 100755 index 0000000..051b0bd --- /dev/null +++ b/.tmux-sessionizer @@ -0,0 +1,3 @@ +# Setup tmux +tmux send-keys "nix-shell" ENTER +tmux send-keys "vi ." ENTER diff --git a/Makefile b/Makefile index 2fb4b00..b761782 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,4 @@ sim_output_location: mkdir -p build/sim/ sim: sim_output_location - bsc -u -p %/Libraries:$(subst $(space):,:,$(SRCDIRS)) src/ESeries.bsv + bsc -u -p %/Libraries:$(subst $(space):,:,$(SRCDIRS)) -bdir build src/ESeries.bsv