Skip to content
  • This project
    • Loading...
  • Sign in

Barry / rf-depot

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • rf-depot
  • ..
  • nec
  • lantnz.v
  • root's avatar
    added the rest · 5fa3b884
    5fa3b884
    root committed 2020-05-02 06:11:47 +0000
lantnz.v 154 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
module lantnz (z, d, e, oe);
   input d, e, oe;
   output z;
   wire q;

   assign  z = oe ? q : 1'bz;
   GCB_LATCH G1 (q,, d, e, 1'b1, 1'b1);

endmodule