Change Markdown snippets, add verilog to build function

This commit is contained in:
2023-09-01 15:52:10 +02:00
parent c6bedc0e98
commit 480c242895
2 changed files with 3 additions and 2 deletions

View File

@@ -89,6 +89,8 @@ function! Build()
execute 'cargo run'
elseif l:filetype == 'S'
execute 'make'
elseif l:filetype == 'verilog'
execute 'verilator --binary %'
else
echo "Unsupported file type: " . l:filetype
endif