From cd9e572b6523fac483ce1695ae1785fca075cc53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 21 Nov 2017 22:01:52 +0100 Subject: Implement and test ADD --- qtmips_machine/tests/testcore.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'qtmips_machine/tests/testcore.cpp') diff --git a/qtmips_machine/tests/testcore.cpp b/qtmips_machine/tests/testcore.cpp index 33bf07e..5320a6b 100644 --- a/qtmips_machine/tests/testcore.cpp +++ b/qtmips_machine/tests/testcore.cpp @@ -5,6 +5,7 @@ void MachineTests::core_regs_data() { QTest::addColumn("i"); QTest::addColumn("init"); QTest::addColumn("res"); + // Note that we shouldn't be touching program counter as that is handled automatically and differs if we use pipelining // Test arithmetic instructions { @@ -21,9 +22,6 @@ void MachineTests::core_regs_data() { } void MachineTests::core_regs() { - QTest::addColumn("i"); - QTest::addColumn("init"); - QTest::addColumn("res"); QFETCH(Instruction, i); QFETCH(Registers, init); QFETCH(Registers, res); @@ -32,10 +30,12 @@ void MachineTests::core_regs() { mem.write_word(res.read_pc(), i.data()); // Store single instruction (anything else should be 0 so NOP effectively) // Test on non-piplined + res.pc_inc(); // We did single step so increment program counter accordingly Memory mem_single(mem); // Create memory copy - CoreSingle core_single(&init, &mem_single); + Registers regs_single(init); // Create registers copy + CoreSingle core_single(®s_single, &mem_single); core_single.step(); // Single step should be enought as this is risc without pipeline - //QCOMPARE(init, res); // After doing changes from initial state this should be same state as in case of passed expected result + QCOMPARE(regs_single, res); // After doing changes from initial state this should be same state as in case of passed expected result QCOMPARE(mem, mem_single); // There should be no change in memory // TODO on pipelined core -- cgit v1.2.3