LOGIN   :::   RECOVER PASS   :::   GET ACCOUNT    
Browse
  • Projects
  • Code (CVS)
  • Forums
  • News
  • Articles
  • Polls
  •  
    OpenCores
  • FAQ
  • CVS HowTo
  • Mission
  • Media
  • Tools
  • Sponsors
  • Mirrors
  • Logos
  • Contact us
  •  
    Tools
  • Search
      
  • Download Cores (CVSGet)
  •  
    More
  • Wishbone
  • Perlilog
  • EDA tools
  • OpenTech CD
  •  
    Navigation: All forums > Cvs-checkins > Message List > Message Post

    Message

    Reply | Reply all
    Date Prev | Date Next | Thread Prev | Thread Next Date Index | Thread Index

    From: cvs at opencores.org<cvs@o...>
    Date: Tue May 20 10:30:21 CEST 2008
    Subject: [cvs-checkins] MODIFIED: vgafb ...
    Top
    Date: 00/08/05 20:10:30

    Modified: vgafb wb_vga.v
    Log:
    Fixed sensitivity lists




    Revision Changes Path
    1.4 vgafb/wb_vga.v

    http://www.opencores.org/cvsweb.shtml/vgafb/wb_vga.v.diff?r1=1.3&r2=1.4

    (In the diff below, changes in quantity of whitespace are not shown.)

    Index: wb_vga.v
    ===================================================================
    RCS file: /cvsroot/lekernel/vgafb/wb_vga.v,v
    retrieving revision 1.3
    retrieving revision 1.4
    diff -u -b -r1.3 -r1.4
    --- wb_vga.v 11 Feb 2008 18:04:39 -0000 1.3
    +++ wb_vga.v 20 May 2008 08:30:20 -0000 1.4
    @@ -136,7 +136,7 @@
    end

    always @(wb_adr_i
    - or enable
    + or enable or enablesync
    or fboffset or fboffsetsync
    or hres or hblank or hsyncmin or hsyncmax
    or vres or vblank or vsyncmin or vsyncmax) begin
    @@ -215,7 +215,7 @@
    end
    end

    -always @(hactive or hcounter or vactive or vcounter or pixelfifo_full or fbwb_stb_o or fbwb_ack_i) begin
    +always @(hactive or hcounter or vactive or vcounter or hblank or hres or vblank or vres or pixelfifo_full or fbwb_stb_o or fbwb_ack_i) begin
    if(~pixelfifo_full && (~fbwb_stb_o || fbwb_ack_i)) begin
    if(hcounter == 0) begin
    if(hactive) begin
    @@ -255,7 +255,7 @@
    end
    end

    -always @(hactive or hcounter or vactive or vcounter) begin
    +always @(hactive or hcounter or vactive or vcounter or hsyncmin or hsyncmax or vsyncmin or vsyncmax) begin
    /* HSYNC generator (negative logic) */
    if(~hactive && (hcounter[8:0] >= hsyncmin) && (hcounter[8:0] <= hsyncmax)) begin
    pixelfifo_din[24] <= 0;



     
    Copyright (c) 1999 OPENCORES.ORG. All rights reserved.