Subversion Repositories ngs

Rev

Rev 99 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 99 Rev 101
Line 125... Line 125...
125
        end
125
        end
126
 
126
 
127
        _MP3W1: next_state = _MP3W2;
127
        _MP3W1: next_state = _MP3W2;
128
 
128
 
129
        _MP3W2:begin
129
        _MP3W2:begin
130
                if( rdone )
-
 
131
                        next_state = _STOP;
-
 
132
                if( md_rdy && md_dreq )
130
                if( md_rdy && md_dreq )
133
                        next_state = _MP3W3;
131
                        next_state = _MP3W3;
134
                else
132
                else
135
                        next_state = _MP3W2;
133
                        next_state = _MP3W2;
136
        end
134
        end
137
 
135
 
-
 
136
        _MP3W3:begin
-
 
137
                if( rdone )
-
 
138
                        next_state = _STOP;
-
 
139
                else
138
        _MP3W3: next_state = _MP3W2;
140
                        next_state = _MP3W2;
-
 
141
        end
139
 
142
 
140
        _STOP: next_state = _STOP;
143
        _STOP: next_state = _STOP;
141
 
144
 
142
        endcase
145
        endcase
143
 
146