From 6ad8d012bc494f1119368c1466ac5d5d1bca2b96 Mon Sep 17 00:00:00 2001 From: bd Date: Sat, 22 Mar 2025 14:38:35 -0400 Subject: Remove manual clock advancing / resolution from storage devices --- src/cli/cli.cc | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/cli') 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 args) { - clock(); - return; - }; - commands['h'] = [this](std::vector args) { help(); return; @@ -85,11 +80,6 @@ void Cli::help() << " [p]eek - 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(); -- cgit v1.2.3