From 26c24ab3c581967015490d1a11ee098bb5ba338a Mon Sep 17 00:00:00 2001 From: bd Date: Sun, 11 May 2025 12:20:33 -0400 Subject: Replaced STOREV with LOADV --- tests/ex.cc | 4 ++-- tests/id.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/ex.cc b/tests/ex.cc index 5972182..5dbbe32 100644 --- a/tests/ex.cc +++ b/tests/ex.cc @@ -538,7 +538,7 @@ TEST_CASE_METHOD(EXFixture, "LOAD", "[ex]") delete i; } -// TEST_CASE_METHOD(EXFixture, "LOADV", "[ex]") +// TEST_CASE_METHOD(EXFixture, "SRDL", "[ex]") // { // } @@ -763,7 +763,7 @@ TEST_CASE_METHOD(EXFixture, "STORE", "[ex]") delete i; } -// TEST_CASE_METHOD(EXFixture, "STOREV", "[ex]") +// TEST_CASE_METHOD(EXFixture, "SRDS", "[ex]") // { // } diff --git a/tests/id.cc b/tests/id.cc index b52ad9c..20b3200 100644 --- a/tests/id.cc +++ b/tests/id.cc @@ -166,13 +166,13 @@ TEST_CASE_METHOD(IDFixture, "Parse arbitrary i-type # two", "[id]") signed int t; InstrDTO *i; - t = this->encode_I_type(0xCC, 0b10101, 0b00110, 0b11011, 0b1); + t = this->encode_I_type(0xCC, 0b10101, 0b00110, 0b11010, 0b1); i = this->decode_bits(t); CHECK(i->operands.integer.slot_one == 0x00000000); // registers are empty CHECK(i->operands.integer.slot_two == 0x00000000); CHECK(i->operands.integer.slot_three == 0xCC); - CHECK(i->mnemonic == STOREV); + CHECK(i->mnemonic == STORE); delete i; } -- cgit v1.2.3