You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
387 B

module DICE
s : [0..12];
[] s=0->0.5:(s'=1) + 0.5:(s'=2);
[] s=1->0.5:(s'=3) + 0.5:(s'=4);
[] s=2->0.5:(s'=5) + 0.5:(s'=6);
[] s=3->0.5:(s'=1) + 0.5:(s'=7);
[] s=4->0.5:(s'=8) + 0.5:(s'=9);
[] s=5->0.5:(s'=10) + 0.5:(s'=11);
[] s=6->0.5:(s'=12) + 0.5:(s'=2);
[] s=7->(s'=7);
[] s=8->(s'=8);
[] s=9->(s'=9);
[] s=10->(s'=10);
[] s=11->(s'=11);
[] s=12->(s'=12);
endmodule