diff options
author | bd <bdunahu@operationnull.com> | 2025-03-22 14:38:35 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-22 14:38:35 -0400 |
commit | 6ad8d012bc494f1119368c1466ac5d5d1bca2b96 (patch) | |
tree | 78c4981b2ad7db57bbe3d210655b577ad558018d /src/cli | |
parent | 4bad9ab29a5fa6c442a257974beb7daeaf91f046 (diff) |
Remove manual clock advancing / resolution from storage devices
Diffstat (limited to 'src/cli')
-rw-r--r-- | src/cli/cli.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/cli/cli.cc b/src/cli/cli.cc index e25b316..022b266 100644 --- a/src/cli/cli.cc +++ b/src/cli/cli.cc @@ -60,11 +60,6 @@ Cli::Cli() return; }; - commands['c'] = [this](std::vector<std::string> args) { - clock(); - return; - }; - commands['h'] = [this](std::vector<std::string> args) { help(); return; @@ -85,11 +80,6 @@ void Cli::help() << " [p]eek <storage-level> <base> <lines> - side door function that " "peeks the current status of the entire memory subsystem" << std::endl - << std::endl - << " [c]ycle - manually advances the clock" << std::endl - << " [f]orce - advances the clock until one operation reports " - "completion" - << std::endl << " [r]eset - side door function that resets the memory " "configuration and " "cycles" @@ -122,12 +112,6 @@ void Cli::store(Accessor accessor, int data, int address) << address << std::endl; } -void Cli::clock() -{ - this->cache->resolve(); - ++this->cycle; -} - void Cli::reset() { this->initialize(); |