Skip to content

Commit

Permalink
fix synth error #766
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Gardner-Stephen committed May 19, 2024
1 parent f91f3ce commit a9cb29c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/vhdl/sdcardio.vhdl
Original file line number Diff line number Diff line change
Expand Up @@ -1386,8 +1386,7 @@ begin -- behavioural
fastio_rdata(2 downto 0) <= to_unsigned(read_ahead_count,3);
when "10101" => -- @IO:GS $D095 - low-level SD state (DEBUG)
fastio_rdata <= (others => '0');
fastio_rdata(1) <= sdcard_busy;
fastio_rdata(0) <= last_sd_error;
fastio_rdata(0) <= sdcard_busy;
when "11011" => -- @IO:GS $D09B - FSM state of low-level SD controller (DEBUG)
fastio_rdata <= last_sd_state;
when "11100" => -- @IO:GS $D09C - Last byte low-level SD controller read from card (DEBUG)
Expand Down

0 comments on commit a9cb29c

Please sign in to comment.