From 2c94ea91b1c5a0d7c0ebb0ab229950f7c849909a Mon Sep 17 00:00:00 2001 From: bd Date: Thu, 17 Apr 2025 15:30:26 -0400 Subject: The pipeline says some things and there are numbers --- src/sim/ex.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/sim/ex.cc') diff --git a/src/sim/ex.cc b/src/sim/ex.cc index d20d15f..c676781 100644 --- a/src/sim/ex.cc +++ b/src/sim/ex.cc @@ -340,20 +340,20 @@ EX::EX(Stage *stage) : Stage(stage) INIT_INSTRUCTION( PUSH, { + std::cout << "adding " << s1 << " and " << s3; + s1 = s1 + s3; + std::cout << " for " << s1 << std::endl; (void)pc; - (void)s3; (void)s2; - (void)s1; (void)this; }), INIT_INSTRUCTION( POP, { + s1 = s1 + s3; (void)pc; - (void)s3; (void)s2; - (void)s1; (void)this; }), -- cgit v1.2.3