Revision 1330
Added by markw almost 4 years ago
flash_controller.vhd | ||
---|---|---|
end if;
|
||
when state_read=>
|
||
flash_read <= '1';
|
||
if (flash_waitrequest='0') then
|
||
state_next <= state_read_wait;
|
||
end if;
|
||
state_next <= state_read_wait;
|
||
when state_read_wait =>
|
||
flash_read <= flash_waitrequest;
|
||
complete <= flash_readvalid;
|
||
if (flash_readvalid = '1') then
|
||
state_next <= state_delay;
|
Also available in: Unified diff
This seems to break v3 flashing, reverting for now