OpenCores
URL https://opencores.org/ocsvn/ac97/ac97/trunk

Subversion Repositories ac97

[/] [ac97/] [trunk/] [rtl/] [verilog/] [ac97_int.v] - Diff between revs 4 and 10

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 4 Rev 10
Line 36... Line 36...
////                                                             ////
////                                                             ////
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
 
 
//  CVS Log
//  CVS Log
//
//
//  $Id: ac97_int.v,v 1.1 2001-08-03 06:54:50 rudi Exp $
//  $Id: ac97_int.v,v 1.2 2002-03-05 04:44:05 rudi Exp $
//
//
//  $Date: 2001-08-03 06:54:50 $
//  $Date: 2002-03-05 04:44:05 $
//  $Revision: 1.1 $
//  $Revision: 1.2 $
//  $Author: rudi $
//  $Author: rudi $
//  $Locker:  $
//  $Locker:  $
//  $State: Exp $
//  $State: Exp $
//
//
// Change History:
// Change History:
//               $Log: not supported by cvs2svn $
//               $Log: not supported by cvs2svn $
 
//               Revision 1.1  2001/08/03 06:54:50  rudi
 
//
 
//
 
//               - Changed to new directory structure
 
//
//               Revision 1.1.1.1  2001/05/19 02:29:18  rudi
//               Revision 1.1.1.1  2001/05/19 02:29:18  rudi
//               Initial Checkin
//               Initial Checkin
//
//
//
//
//
//
Line 84... Line 89...
//
//
// Interrupt Logic
// Interrupt Logic
//
//
 
 
always @(posedge clk or negedge rst)
always @(posedge clk or negedge rst)
        if(!rst)        int_set[0] <= #1 0;
        if(!rst)        int_set[0] <= #1 1'b0;
        else
        else
        case(cfg[5:4])  // synopsys parallel_case full_case
        case(cfg[5:4])  // synopsys parallel_case full_case
                        // 1/4 full/empty
                        // 1/4 full/empty
           0: int_set[0] <= #1 cfg[0] & (full_empty | (status == 2'd0));
           2'h2: int_set[0] <= #1 cfg[0] & (full_empty | (status == 2'h0));
                        // 1/2 full/empty
                        // 1/2 full/empty
           1: int_set[0] <= #1 cfg[0] & (full_empty | (status[1] == 1'd0));
           2'h1: int_set[0] <= #1 cfg[0] & (full_empty | (status[1] == 1'h0));
                        // 3/4 full/empty
                        // 3/4 full/empty
           2: int_set[0] <= #1 cfg[0] & (full_empty | (status < 2'd3));
           2'h0: int_set[0] <= #1 cfg[0] & (full_empty | (status < 2'h3));
           3: int_set[0] <= #1 cfg[0] & full_empty;
           2'h3: int_set[0] <= #1 cfg[0] & full_empty;
        endcase
        endcase
 
 
always @(posedge clk or negedge rst)
always @(posedge clk or negedge rst)
        if(!rst)        int_set[1] <= #1 0;
        if(!rst)        int_set[1] <= #1 1'b0;
        else
        else
        if(empty & re)  int_set[1] <= #1 1;
        if(empty & re)  int_set[1] <= #1 1'b1;
 
 
always @(posedge clk or negedge rst)
always @(posedge clk or negedge rst)
        if(!rst)        int_set[2] <= #1 0;
        if(!rst)        int_set[2] <= #1 1'b0;
        else
        else
        if(full & we)   int_set[2] <= #1 1;
        if(full & we)   int_set[2] <= #1 1'b1;
 
 
endmodule
endmodule
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.