From af89bcc7f3fcdaae77d232f53616709b9abedf37 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Wed, 19 Jun 2019 18:01:06 -0700 Subject: [PATCH] gitignore: organize and comment on files Signed-off-by: Sean Cross --- .gitignore | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 5d83845..412e3d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,28 @@ +# C compilation artifacts .obj/ -*.swp -*.swo -*~ +*.o *.bin *.dfu *.ihex *.elf + +# Swapfiles +*.swp +*.swo +*~ + .vscode/ -build/ + +# Python cache files __pycache__/ *.pyc + +# Environment files generated by lxbuildenv +.env + +# Output from LiteX +build/ test/ -.env \ No newline at end of file + +# Output from yosys +abc.history \ No newline at end of file