aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbryan newbold <bnewbold@leaflabs.com>2013-10-29 15:37:36 -0400
committerbryan newbold <bnewbold@leaflabs.com>2013-10-29 15:37:36 -0400
commit98a7dd4dd7c3e15308f1c6314f799a367fa1aa33 (patch)
tree6261235d6e31f99c4763f45c18cec36e58c8c559
parent44b35a93274197484d9fec8ba0d38e551661790c (diff)
downloadbasic-hdl-template-98a7dd4dd7c3e15308f1c6314f799a367fa1aa33.tar.gz
basic-hdl-template-98a7dd4dd7c3e15308f1c6314f799a367fa1aa33.zip
add old TODO requests from AJ
-rw-r--r--TODO.template25
1 files changed, 25 insertions, 0 deletions
diff --git a/TODO.template b/TODO.template
index 6b51e83..89a0d5e 100644
--- a/TODO.template
+++ b/TODO.template
@@ -16,3 +16,28 @@ effort levels seem high by default:
impact:
impact -mode bscan -b build/sp605.bit -port auto -autoassign (needs testing)
+
+requests from AJ:
+ anything related to not rebuilding all the coregen when not necessary.
+
+ e.g. want a make clean equivalent to removing the build dir but not the
+ cores. This should actually be the default behavior, with different
+ operator for nixing the cores.
+
+ not auto rebuilding the cores when switching branches/commits if not
+ strictly necessary. Because git touches all the files, this may be
+ difficult.
+
+ make isim/simulate will run to completion even if there were errors on
+ the build.
+
+ In the case of make isim, isim will load and run the previously valid
+ simulation. Unless you happen to see the error go by in the build log,
+ you will unknowingly be simulating your previous build, whereas your
+ current build failed to compile.
+
+ The solution is to have make simulate begin by deleting the previous
+ simulation executable, so that it must successfully create a new one
+ before loading isim.
+
+Add linting to tests (aka, tb/*_tb.v)