aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/features/ZeroPortMem.fir
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/resources/features/ZeroPortMem.fir')
-rw-r--r--src/test/resources/features/ZeroPortMem.fir8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/resources/features/ZeroPortMem.fir b/src/test/resources/features/ZeroPortMem.fir
index 7e509ecf..96327f5c 100644
--- a/src/test/resources/features/ZeroPortMem.fir
+++ b/src/test/resources/features/ZeroPortMem.fir
@@ -1,7 +1,7 @@
; See LICENSE for license details.
circuit ZeroPortMem :
module ZeroPortMem :
- input clk : Clock
+ input clock : Clock
input reset : UInt<1>
mem mymem :
@@ -16,8 +16,8 @@ circuit ZeroPortMem :
when not(reset) :
when eq(foo, UInt<32>("hdeadbeef")) :
- stop(clk, UInt(1), 0) ; Success !
+ stop(clock, UInt(1), 0) ; Success !
else :
- printf(clk, UInt(1), "Assertion failed!\n")
- stop(clk, UInt(1), 1) ; Failure!
+ printf(clock, UInt(1), "Assertion failed!\n")
+ stop(clock, UInt(1), 1) ; Failure!