All targets must deal with their own firmware now
[yari.git] / Icarus / pll.v
blobe6acf9383964502429016a98a619f3e4195008ae
1 // -----------------------------------------------------------------------
2 //
3 // Copyright 2004 Tommy Thorn - All Rights Reserved
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 // Bostom MA 02111-1307, USA; either version 2 of the License, or
9 // (at your option) any later version; incorporated herein by reference.
11 // -----------------------------------------------------------------------
13 // Dummy simulations of Altera PLLs
15 `timescale 1ns/10ps
16 module pll1(input wire inclk0,
17 output wire c0,
18 output wire c1,
19 output wire locked,
20 output wire e0);
22 assign c0 = inclk0;
23 assign c1 = inclk0;
24 assign locked = 1;
25 assign e0 = inclk0;
26 endmodule
28 module pll2(input wire inclk0,
29 output wire c0,
30 output wire c1,
31 output wire locked,
32 output wire e0);
34 assign c0 = inclk0;
35 assign c1 = inclk0;
36 assign locked = 1;
37 assign e0 = inclk0;
38 endmodule