Skip to content

Commit

Permalink
Slot table write now responds.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbscloud committed Oct 4, 2013
1 parent edd859f commit 79da5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noc/src/nAdapter.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ begin
-- build outputs -------------------------------------

ocp_read_control <= '1' when (state_cnt="00" or state_cnt="01") and (config_reg=('1' & DMA_R_ACCESS) or config_reg=('1' & DMA_H_ACCESS) or config_reg=('1' & DMA_L_ACCESS)) and read_cmd_reg='1' else '0';
ocp_write_control <= '1' when (state_cnt="00" or state_cnt="01") and (config=DMA_R_ACCESS or config=DMA_H_ACCESS or config=DMA_L_ACCESS) and ocp_cmd_write='1' else '0';
ocp_write_control <= '1' when (state_cnt="00" or state_cnt="01") and (config=DMA_R_ACCESS or config=DMA_H_ACCESS or config=DMA_L_ACCESS or config=ST_ACCESS) and ocp_cmd_write='1' else '0';
resp_ld <= '1' when (ocp_read_control='1' or ocp_write_control='1' or proc_in.MRespAccept='1') else '0';

response_ld_control <= '1' when ((ocp_read_control='1' or ocp_write_control='1') and proc_in.MRespAccept='0') else '0';
Expand Down

0 comments on commit 79da5b9

Please sign in to comment.