summaryrefslogtreecommitdiff
path: root/src/cli/cli.cc
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
commitd743af4b5df01e3a75725912bee1d00b8fe573dd (patch)
tree4de529c2e8a762503b99db77efc73cdc98104bb0 /src/cli/cli.cc
parent97173af3651138db50cc42df25b474af2b6ece43 (diff)
parent92e8c2583695a3bf652e0e8dedb79e7a99922f5f (diff)
Merge remote-tracking branch 'origin/master' into bdunahu
Diffstat (limited to 'src/cli/cli.cc')
-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;
}