Changes between Version 22 and Version 23 of Exercises/13_4/IntroToXPS


Ignore:
Timestamp:
Aug 20, 2012, 1:55:57 PM (12 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Exercises/13_4/IntroToXPS

    v22 v23  
    4646[[Image(projecttab.png)]]
    4747
    48 6.
     486. Add the following chunk of code to the bottom of the system.mhs file:
    4949
     50{{{
     51BEGIN prng_useriosrc_plbw
     52 PARAMETER INSTANCE = prng_useriosrc_plbw_0
     53 PARAMETER HW_VER = 1.02.a
     54 PARAMETER C_BASEADDR = 0xc4000000
     55 PARAMETER C_HIGHADDR = 0xc400ffff
     56 BUS_INTERFACE SPLB = plb_secondary_80MHz
     57 PORT sysgen_clk = clk_80MHz
     58 PORT hexdisp_left = LeftHexDisplay
     59 PORT hexdisp_right = RightHexDisplay
     60 PORT leds_green = GreenLEDs
     61 PORT leds_red = RedLEDs
     62 PORT pause = UpPushbutton
     63END
     64}}}
     65
     66This chunk of code will instantiate the prng_useriosrc core in the design.
     67
     68
     69== Testing the Design ==
    5070{{{
    5171WARP v3 Template Project - Lite
     
    6484<iframe width="640" height="360" src="http://www.youtube.com/embed/fh_Lobo74X0?rel=0" frameborder="0" allowfullscreen></iframe>
    6585}}}
     86
     87== Discussion ==