Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4a79a47b7dd03dd4b2776ee40322b0149935d234
/
.
/
src
/
Testcases
/
Google
/
chapter-6
/
6.12--real_edge.sv
blob: 99c4c263de4538a69a59749a6f23c059f7a8a23a [
file
] [
log
] [
blame
]
/*
:name: real_edge
:description: real edge event tests
:should_fail: 1
:tags: 6.12
:type: simulation
*/
module
top
();
real a
=
0.5
;
always
@(
posedge a
)
$display
(
"posedge"
);
endmodule