Quick

Results 9 comments of Quick

I discover this on the website https://www.tensorflow.org/tutorials/keras/save_and_restore_models ```python (train_images, train_labels), (test_images, test_labels) = tf.keras.datasets.mnist.load_data() train_labels = train_labels[:1000] test_labels = test_labels[:1000] train_images = train_images[:1000].reshape(-1, 28 * 28) / 255.0 test_images =...

I just try to do some experiment on 74139 [74LS139 datasheet](https://www.futurlec.com/74LS/74LS139.shtml) Screenshot of the datasheet: ![image](https://user-images.githubusercontent.com/44318486/159172700-f1963b7d-017e-4e3d-a88a-60a8eae49155.png) ![image](https://user-images.githubusercontent.com/44318486/159172839-0d013282-8613-40b0-b4b3-147a1a874d02.png) Test Circuit: ![image](https://user-images.githubusercontent.com/44318486/159172682-b94810a4-4a67-49b3-992b-086898d906ba.png) Timing Diagram: ![image](https://user-images.githubusercontent.com/44318486/159172756-27bcb6d6-d929-4577-95ff-02394291c172.png)

Sorry I missed that. I also checked the [datasheet](https://www.ti.com/product/SN74LS139A) mentioned in code. It still said the same thing ![image](https://user-images.githubusercontent.com/44318486/159173485-33fec50a-e84f-497f-a14e-2ac39d842da3.png) (I tested in `develop` branch)

I tried to put some fix (tested with same *.circ file) ![image](https://user-images.githubusercontent.com/44318486/159174042-9b862b3b-b804-44f0-a490-3dfe5f6db55f.png) better

https://github.com/logisim-evolution/logisim-evolution/blob/master/src/main/java/com/cburch/logisim/std/ttl/Ttl7485HdlGenerator.java#L59-L59 For this line mentioned by OP, it should be changed to `Hdl.isVhdl()` https://github.com/logisim-evolution/logisim-evolution/blob/master/src/main/java/com/cburch/logisim/fpga/hdlgenerator/Hdl.java#L39-L45

I think that #297 is simple enough, however I guess something like adding `vendor/` into `.gitignore` needs to be considered.

Just for reference, #257 is closed, but I can't see a discussion in the PR, I guess we need more consideration on the disadvantage of deleting `vendor/` folder. (Just to...

> we're having a discussion in #284 I see, thanks!