- 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:
@@ -248,7 +248,7 @@ begin
|
|||||||
end process;
|
end process;
|
||||||
|
|
||||||
proc_fsm:
|
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
|
begin
|
||||||
state_next <= state;
|
state_next <= state;
|
||||||
|
|
||||||
|
|||||||
@@ -191,6 +191,19 @@ STIMULUS: process
|
|||||||
wait until rising_edge(CLK) and mst_cmd_rdy = '1';
|
wait until rising_edge(CLK) and mst_cmd_rdy = '1';
|
||||||
mst_cmd_vld <= '0';
|
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);
|
wait until rising_edge(CLK);
|
||||||
mst_din <= X"C3AA55C1";
|
mst_din <= X"C3AA55C1";
|
||||||
|
|||||||
Reference in New Issue
Block a user