restore hopefully all remaining pragmas

This commit is contained in:
Yehowshua Immanuel 2023-09-25 03:44:40 -04:00
parent e0b5d55387
commit 3be337c4d6
2 changed files with 3 additions and 0 deletions

View file

@ -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;

View file

@ -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