From 8dc35ab1bbf1671d27ff6d3a161ad7a90e242b0b Mon Sep 17 00:00:00 2001 From: adam Date: Mon, 27 Oct 2008 15:22:27 +0100 Subject: [PATCH] use DATAWIDTH instead of INSTRUCTION_WIDTH in Memory.ship --- ships/Memory.ship | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ships/Memory.ship b/ships/Memory.ship index f97347c..5395cb3 100644 --- a/ships/Memory.ship +++ b/ships/Memory.ship @@ -202,7 +202,7 @@ sequence guarantee problem mentioned in the previous paragraph. // assumes we never want a zero-length codebag if ( inCBD_r && !inCBD_a && !out_r && !out_a) begin if (!dispatching_cbd) begin - cursor <= inCBD_d[(`INSTRUCTION_WIDTH-1):(`CODEBAG_SIZE_BITS)]; + cursor <= inCBD_d[(`DATAWIDTH-1):(`CODEBAG_SIZE_BITS)]; counter <= 0; dispatching_cbd <= 1; end -- 1.7.10.4