- addedtest with more than 32 bit read data

git-svn-id: http://moon:8086/svn/vhdl/trunk@1287 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2015-06-04 16:39:42 +00:00
parent 360bd90d0f
commit 8f12925523
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -248,7 +248,7 @@ begin
end process;
proc_fsm:
process(state, rx_enable, cat_fifo_empty, cat_fifo_full, write_fifo_empty, write_fifo_full, xfer_count_busy, data_count_busy, shift_cnt_pipe, ctrl_reg)
process(state, rx_enable, cat_fifo_empty, cat_fifo_full, write_fifo_empty, write_fifo_full, read_fifo_full, xfer_count_busy, data_count_busy, shift_cnt_pipe, ctrl_reg)
begin
state_next <= state;
+13
View File
@@ -191,6 +191,19 @@ STIMULUS: process
wait until rising_edge(CLK) and mst_cmd_rdy = '1';
mst_cmd_vld <= '0';
--------------------------------------------------------
wait until rising_edge(CLK);
mst_din <= X"9F00_0000";
mst_din_vld <= '1';
wait until rising_edge(CLK) and mst_din_rdy = '1';
mst_din_vld <= '0';
wait until rising_edge(CLK);
mst_cmd <= to_cmd(256, 8);
mst_cmd_vld <= '1';
wait until rising_edge(CLK) and mst_cmd_rdy = '1';
mst_cmd_vld <= '0';
--------------------------------------------------------
wait until rising_edge(CLK);
mst_din <= X"C3AA55C1";