mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 13:34:28 +00:00
Modified the hptw's simulation error message so that synthesis does not attempt to include this statement.
This commit is contained in:
parent
4c8ea89f15
commit
66ad510abf
@ -201,9 +201,11 @@ module hptw
|
||||
FAULT: if (ITLBMissF & AnyCPUReqM & ~MemAfterIWalkDone) NextWalkerState = FAULT;
|
||||
else NextWalkerState = IDLE;
|
||||
default: begin
|
||||
$error("Default state in HPTW should be unreachable");
|
||||
NextWalkerState = IDLE; // should never be reached
|
||||
end
|
||||
// synthesis translate_off
|
||||
$error("Default state in HPTW should be unreachable");
|
||||
// synthesis translate_on
|
||||
NextWalkerState = IDLE; // should never be reached
|
||||
end
|
||||
endcase
|
||||
end else begin // No Virtual memory supported; tie HPTW outputs to 0
|
||||
assign HPTWRead = 0; assign SelPTW = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user