Skip to content

Commit

Permalink
Fix byte logic in external test dll
Browse files Browse the repository at this point in the history
  • Loading branch information
TollyH committed Nov 24, 2023
1 parent f55e64f commit 528e848
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AssEmbly.Test/ProcessorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14243,7 +14243,7 @@ public void ASMX_CAL_Register()
});
// Test that no exception is thrown
_ = testProcessor.Execute(false);
Assert.AreEqual(3UL, testProcessor.Registers[(int)Register.rpo], "Instruction updated the rpo register by an incorrect amount");
Assert.AreEqual(4UL, testProcessor.Registers[(int)Register.rpo], "Instruction updated the rpo register by an incorrect amount");
Assert.AreEqual(0xABUL, testProcessor.Memory[1234], "Instruction did not produce correct result");
Assert.AreEqual(0x123456789ABCDEF0UL, testProcessor.Registers[(int)Register.rg8], "Instruction did not produce correct result");
Assert.AreEqual(0xCDUL, testProcessor.Registers[(int)Register.rg9], "Instruction did not produce correct result");
Expand Down
Binary file modified AssEmbly.Test/test.dll
Binary file not shown.

0 comments on commit 528e848

Please sign in to comment.