From e22f321caf3440352476de1cfa1dae440627301a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A0rius=20Mont=C3=B3n?= Date: Mon, 8 Nov 2021 09:24:57 +0100 Subject: [PATCH] Better output --- src/Performance.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Performance.cpp b/src/Performance.cpp index c1594ee..25a95c7 100644 --- a/src/Performance.cpp +++ b/src/Performance.cpp @@ -27,6 +27,7 @@ Performance::Performance() { } void Performance::dump() const { + std::cout << "************************************" << std::endl; std::cout << std::dec << "# data memory reads: " << data_memory_read << std::endl; std::cout << "# data memory writes: " << data_memory_write << std::endl; @@ -36,6 +37,7 @@ void Performance::dump() const { std::cout << "# registers write: " << register_write << std::endl; std::cout << "# instructions executed: " << instructions_executed << std::endl; + std::cout << "************************************" << std::endl; } Performance *Performance::instance = nullptr;