1 //-----------------------------------------------------------------------------
2 // The way that we connect things in low-frequency simulation mode. In this
3 // case just pass everything through to the ARM, which can bit-bang this
4 // (because it is so slow).
6 // Jonathan Westhues, April 2006
7 //-----------------------------------------------------------------------------
10 pck0, ck_1356meg, ck_1356megb,
11 pwr_lo, pwr_hi, pwr_oe1, pwr_oe2, pwr_oe3, pwr_oe4,
13 ssp_frame, ssp_din, ssp_dout, ssp_clk,
17 input pck0, ck_1356meg, ck_1356megb;
18 output pwr_lo, pwr_hi, pwr_oe1, pwr_oe2, pwr_oe3, pwr_oe4;
22 output ssp_frame, ssp_din, ssp_clk;
23 input cross_hi, cross_lo;
26 // No logic, straight through.
27 assign pwr_oe3 = 1'b0;
28 assign pwr_oe1 = ssp_dout;
29 assign pwr_oe2 = ssp_dout;
30 assign pwr_oe4 = ssp_dout;
31 assign ssp_clk = cross_lo;
33 assign adc_clk = 1'b0;
35 assign dbg = cross_lo;