diff options
| author | bd <bdunahu@operationnull.com> | 2025-04-01 20:36:31 -0400 | 
|---|---|---|
| committer | bd <bdunahu@operationnull.com> | 2025-04-01 20:36:31 -0400 | 
| commit | 68324683cde10c636a4a602644f3e64d24b0e412 (patch) | |
| tree | b87195d06940fbb526785a5e4c59b76780d00b22 /src/sim/wb.cc | |
| parent | 25ce77db5f0dbfe6064eb0553591f1b956bad24a (diff) | |
Lots of fixes and tests
Diffstat (limited to 'src/sim/wb.cc')
| -rw-r--r-- | src/sim/wb.cc | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/sim/wb.cc b/src/sim/wb.cc index 01768e8..50acd05 100644 --- a/src/sim/wb.cc +++ b/src/sim/wb.cc @@ -28,6 +28,7 @@ void WB::write_handler()  	reg = this->checked_out.front();  	this->checked_out.pop_front(); +	std::cout << "storing " << reg << " with " << this->curr_instr->get_s1() << std::endl;  	this->store_register(reg, this->curr_instr->get_s1());  } | 
