Skip to content

Commit

Permalink
top: better performance
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Jun 14, 2013
1 parent cd910b8 commit 3240413
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions top.py
Expand Up @@ -13,7 +13,7 @@

version = get_macros("common/version.h")["VERSION"][1:-1]

clk_freq = (62 + Fraction(1, 2))*1000000
clk_freq = (83 + Fraction(1, 3))*1000000
sram_size = 4096 # in bytes
l2_size = 8192 # in bytes

Expand Down Expand Up @@ -96,10 +96,10 @@ def __init__(self, platform):
#
self.submodules.asmicon = asmicon.ASMIcon(sdram_phy, sdram_geom, sdram_timing)
asmiport_wb = self.asmicon.hub.get_port()
asmiport_fb0 = self.asmicon.hub.get_port(4)
asmiport_fb1 = self.asmicon.hub.get_port(4)
asmiport_dvi0 = self.asmicon.hub.get_port(4)
asmiport_dvi1 = self.asmicon.hub.get_port(4)
asmiport_fb0 = self.asmicon.hub.get_port(9)
asmiport_fb1 = self.asmicon.hub.get_port(9)
asmiport_dvi0 = self.asmicon.hub.get_port(9)
asmiport_dvi1 = self.asmicon.hub.get_port(9)
self.asmicon.finalize()

#
Expand Down

0 comments on commit 3240413

Please sign in to comment.