diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-02-12 17:45:44 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-02-12 17:45:44 +0100 |
commit | d58c3eca3a6d4ab00021769fb31ee0279c2fcbab (patch) | |
tree | 20d893fe76bc6b392e672f414720fc67295a6fdc /tests/asicworld/code_hdl_models_dlatch_reset.v | |
parent | 554a8df5e2e7c750b76021821bdf2e07970b9dbf (diff) | |
download | yosys-d58c3eca3a6d4ab00021769fb31ee0279c2fcbab.tar.gz yosys-d58c3eca3a6d4ab00021769fb31ee0279c2fcbab.tar.bz2 yosys-d58c3eca3a6d4ab00021769fb31ee0279c2fcbab.zip |
Some test related fixes
(incl. removal of three bad test cases)
Diffstat (limited to 'tests/asicworld/code_hdl_models_dlatch_reset.v')
-rw-r--r-- | tests/asicworld/code_hdl_models_dlatch_reset.v | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/asicworld/code_hdl_models_dlatch_reset.v b/tests/asicworld/code_hdl_models_dlatch_reset.v deleted file mode 100644 index 2cfc6fbd8..000000000 --- a/tests/asicworld/code_hdl_models_dlatch_reset.v +++ /dev/null @@ -1,30 +0,0 @@ -//----------------------------------------------------- -// Design Name : dlatch_reset -// File Name : dlatch_reset.v -// Function : DLATCH async reset -// Coder : Deepak Kumar Tala -//----------------------------------------------------- -module dlatch_reset ( -data , // Data Input -en , // LatchInput -reset , // Reset input -q // Q output -); -//-----------Input Ports--------------- -input data, en, reset ; - -//-----------Output Ports--------------- -output q; - -//------------Internal Variables-------- -reg q; - -//-------------Code Starts Here--------- -always @ ( en or reset or data) -if (~reset) begin - q <= 1'b0; -end else if (en) begin - q <= data; -end - -endmodule //End Of Module dlatch_reset |