diff options
-rw-r--r-- | models/slave.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/slave.v b/models/slave.v index 4f2cb5c..f062a04 100644 --- a/models/slave.v +++ b/models/slave.v @@ -98,7 +98,7 @@ module memory_slave_model /* only drive data outputs for read commands */ assign DAT_O = (command_acknowledged && !WE_I_to_process) ? - memory[ADR_I_to_process] : 16'bx; + memory[ADR_I_to_process] : {(8 * WORD_SIZE - 1){1'bx}}; assign STALL_O = !can_accept; |