Skip to content

Commit

Permalink
🧪 test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GalaxyShad committed Mar 25, 2024
1 parent 69123e3 commit 17ed962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SomeAsmTranslatorTests/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ private void TestInstruction(string sourceCode, byte[] expectedMachineCode)
public void SPHL() => TestInstruction("SPHL", new byte[] { 0xF9 });

[TestMethod]
public void SHLD() => TestInstruction("SHLD, 6432h", new byte[] { 0x22, 0x32, 0x64 });
public void SHLD() => TestInstruction("SHLD 6432h", new byte[] { 0x22, 0x32, 0x64 });

[TestMethod]
public void STA() => TestInstruction("STA 6432h", new byte[] { 0x32, 0x32, 0x64 });
Expand Down

0 comments on commit 17ed962

Please sign in to comment.