diff options
author | bd <bdunahu@operationnull.com> | 2025-03-11 16:39:47 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-11 16:39:47 -0400 |
commit | 5f13f583e373bb02b7bf20cbcc9298dc1480a697 (patch) | |
tree | 0574ee516499001244d33785a5fc380801c557c9 /src/cli/cli.cc | |
parent | aed0a13d39bfe0b189ea43117aeb2e8b9188c3d9 (diff) |
Rename read/write to read_line and write_word
Diffstat (limited to 'src/cli/cli.cc')
-rw-r--r-- | src/cli/cli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/cli.cc b/src/cli/cli.cc index 0729e00..a885aee 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; } |