blob: d1cd9653db5e3d2b8c3a5b278c22b57f62db02c2 [file] [log] [blame]
(* blackbox *)
module digital_pll(reset, osc, clockp, clockd, div);
input reset; // Sense positive reset
input osc; // Input oscillator to match
input [4:0] div; // PLL feedback division ratio
output [1:0] clockp; // Two 90 degree clock phases
output [3:0] clockd; // Divided clock (2, 4, 8, 16)
endmodule