From: Joshua Wise Date: Fri, 4 Apr 2008 03:52:44 +0000 (-0400) Subject: Update the 7seg more often. X-Git-Url: http://git.joshuawise.com/fpgaboy.git/commitdiff_plain/039167e484194ff9f12fca2cc474f866a212f0cd?hp=9a5394d1e93d850a3610d08f44b7a83b52178b77 Update the 7seg more often. --- diff --git a/7seg.v b/7seg.v index ed4519a..8e91b03 100644 --- a/7seg.v +++ b/7seg.v @@ -6,7 +6,7 @@ module AddrMon( input freeze ); - reg [12:0] clkdv; + reg [10:0] clkdv; reg [1:0] dcount; reg [15:0] latch = 0; @@ -24,7 +24,7 @@ module AddrMon( latch <= addr; end - always @ (posedge clkdv[12]) + always @ (posedge clkdv[10]) begin dcount <= dcount + 1; diff --git a/FPGABoy.ise b/FPGABoy.ise index cf8e697..bd62a30 100644 Binary files a/FPGABoy.ise and b/FPGABoy.ise differ