Added a decoder and implemented it into the regFile. We probably want to change the testbench so that there arent many changes in one clock cycle. Altered the register file so that it only has the one bit enable decided by the decoder and updated the regFile and fetchUnit to reflect this. Went over the fetch unit with Martin, he said it is okay.
12 lines
449 B
Tcl
12 lines
449 B
Tcl
set curr_wave [current_wave_config]
|
|
if { [string length $curr_wave] == 0 } {
|
|
if { [llength [get_objects]] > 0} {
|
|
add_wave /
|
|
set_property needs_save false [current_wave_config]
|
|
} else {
|
|
send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console."
|
|
}
|
|
}
|
|
|
|
run 1000ns
|