zynq-sandbox

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 4c39ccda87dbdbe38de4d69237591f5dcf586505
parent 1ea12574b129cbe5faf45bad3b9a20b1652aca4c
Author: Brian Swetland <swetland@frotz.net>
Date:   Sun, 27 Jul 2014 21:24:47 -0700

sync-oneway: be explicit about default 0 state

Diffstat:
Mhdl/sync_oneway.sv | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hdl/sync_oneway.sv b/hdl/sync_oneway.sv @@ -22,7 +22,7 @@ module sync_oneway( output rxdat ); -reg a, b, c; +reg a = 0, b = 0, c = 0; always_ff @(posedge txclk) a <= txdat;