aboutsummaryrefslogtreecommitdiffstats
path: root/tests/mode00.v
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2022-07-21 13:00:09 -0400
committerGravatar Peter McGoron 2022-07-21 13:00:09 -0400
commit1b612a75e734084196deadb929dffc9181472b08 (patch)
treede97b23f42bb63844b093ea840c357cdaa49b4b6 /tests/mode00.v
parentdocumentation (diff)
autogenerate mode tests
Diffstat (limited to 'tests/mode00.v')
-rw-r--r--tests/mode00.v34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/mode00.v b/tests/mode00.v
deleted file mode 100644
index 2a037cf..0000000
--- a/tests/mode00.v
+++ /dev/null
@@ -1,34 +0,0 @@
-/* (c) Peter McGoron 2022
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v.2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at https://mozilla.org/MPL/2.0/.
- */
-
-module mode00 (
- input clk,
- input [23:0] data_ctrl,
- input activate,
- input ss,
- input rdy,
- output master_finished
-);
-
-spi_write_read
-#(
- .POLARITY(0),
- .PHASE(0)
-) base (
- .clk(clk),
- .data_ctrl(data_ctrl),
- .activate(activate),
- .master_finished(master_finished),
- .ss(ss),
- .rdy(rdy)
-);
-
-initial begin
- $dumpfile("mode00.vcd");
- $dumpvars();
-end
-
-endmodule