summaryrefslogtreecommitdiff
path: root/src/cli
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-03-11 17:24:37 -0400
committerbd <bdunahu@operationnull.com>2025-03-11 17:24:37 -0400
commit282aff5a3d1b6f9678453dfa3e216849d5b1d954 (patch)
tree4de529c2e8a762503b99db77efc73cdc98104bb0 /src/cli
parentdef2338f8156281e776ec5d60769c3e64b88e65d (diff)
parentf208e63ce553c6144a672cd35da23425fa7f86d1 (diff)
Merge remote-tracking branch 'origin/master' into bdunahu
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/cli.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/cli.cc b/src/cli/cli.cc
index c9f83e9..d90edef 100644
--- a/src/cli/cli.cc
+++ b/src/cli/cli.cc
@@ -115,7 +115,7 @@ void Cli::load(Accessor accessor, int address)
void Cli::store(Accessor accessor, int data, int address)
{
- Response r = this->cache->write(accessor, data, address);
+ Response r = this->cache->write_word(accessor, data, address);
std::cout << r << " to " << accessor << " storing " << data << " in "
<< address << std::endl;
}