restore hopefully all remaining pragmas
This commit is contained in:
parent
e0b5d55387
commit
3be337c4d6
|
@ -20,6 +20,7 @@ module mkClkDivider#(Handle fileHandle)(ClkDivider#(hi));
|
|||
hPutStr(fileHandle, msg);
|
||||
hPutStr(fileHandle, genModuleName);
|
||||
|
||||
(* fire_when_enabled, no_implicit_conditions *)
|
||||
rule tick;
|
||||
// $display(counter);
|
||||
counter <= (counter == hi_value) ? 0 : counter + 1;
|
||||
|
|
|
@ -16,7 +16,9 @@ function Bit#(1) serialize(State state, Bit#(8) dataReg);
|
|||
endfunction
|
||||
|
||||
interface ISerializer#(numeric type clkFreq, numeric type baudRate);
|
||||
(* always_enabled , always_ready *)
|
||||
method Action putBit8(Bit#(8) bit8Val);
|
||||
(* always_ready *)
|
||||
method Bit#(1) bitLineOut();
|
||||
endinterface
|
||||
|
||||
|
|
Loading…
Reference in a new issue