Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
top: better performance
Browse files Browse the repository at this point in the history
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
Original file line number Diff line number Diff line change
@@ -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

@@ -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()

#

0 comments on commit 3240413

Please sign in to comment.