diff options
author | Paul Selkirk <paul@psgd.org> | 2015-03-31 16:22:47 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-03-31 16:22:47 -0400 |
commit | a9dd6632bd40bd8b0f1eafd7d815c29c720e786c (patch) | |
tree | fbfd4ce120edd299630ac902bb8f3b3f47760df6 /src/rtl | |
parent | 385984875e96f79637d8b6a5de1225536acd94a1 (diff) |
Revert previous commit - don't delay reads for the sake of EIM.
Diffstat (limited to 'src/rtl')
-rw-r--r-- | src/rtl/coretest.v | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/rtl/coretest.v b/src/rtl/coretest.v index 918312d..1886cd4 100644 --- a/src/rtl/coretest.v +++ b/src/rtl/coretest.v @@ -113,8 +113,7 @@ module coretest( parameter TEST_RST_END = 8'h32; parameter TEST_RD_START = 8'h50; parameter TEST_RD_WAIT = 8'h51; - parameter TEST_RD_WAIT2 = 8'h52; - parameter TEST_RD_END = 8'h53; + parameter TEST_RD_END = 8'h52; parameter TEST_WR_START = 8'h60; parameter TEST_WR_WAIT = 8'h61; parameter TEST_WR_END = 8'h62; @@ -1081,13 +1080,6 @@ module coretest( TEST_RD_WAIT: begin - test_engine_new = TEST_RD_WAIT2; - test_engine_we = 1; - end - - - TEST_RD_WAIT2: - begin sample_core_output = 1; test_engine_new = TEST_RD_END; test_engine_we = 1; |