Administrator
|
The problem is that your simple edit is not valid HDL code and the emulator validates the file when it tries to load it. So it's not loading successfully.
What the emulator does not do a very good job of is providing good feedback on why a particular file is invalid.
The code needs to consist of a list of parts and how they are connected. At this point, the only part you have available is the Nand gate. Once you have the Not successfully implemented, your next part can use both Nand and Not gates, and so on.
The Nand gate has two input ports, labeled a and b, and one output, labeled out.
Try the following as your test code
Nand(a=false, b=in, out=out);
|