vmBitwiseLogicOperationTest pass
This commit is contained in:
parent
03a9afabfa
commit
7c0a6fb65d
|
@ -60,10 +60,10 @@ public enum OpCode {
|
||||||
OR(0x17, 2),
|
OR(0x17, 2),
|
||||||
/** (0x18) Bitwise XOR operation */
|
/** (0x18) Bitwise XOR operation */
|
||||||
XOR(0x18, 2),
|
XOR(0x18, 2),
|
||||||
/** (0x19) Retrieve single byte from word */
|
|
||||||
BYTE(0x19, 2),
|
|
||||||
/** (0x1a) Bitwise NOT operationr */
|
/** (0x1a) Bitwise NOT operationr */
|
||||||
NOT(0x1a, 1),
|
NOT(0x19, 1),
|
||||||
|
/** (0x19) Retrieve single byte from word */
|
||||||
|
BYTE(0x1a, 2),
|
||||||
|
|
||||||
/* Cryptographic Operations */
|
/* Cryptographic Operations */
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ public class GitHubVMTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test // testing full suite
|
@Test // testing full suite
|
||||||
@Ignore
|
|
||||||
public void testBitwiseLogicOperationFromGitHub() throws ParseException {
|
public void testBitwiseLogicOperationFromGitHub() throws ParseException {
|
||||||
|
|
||||||
String json = JSONReader.loadJSON("VMTests/vmBitwiseLogicOperationTest.json");
|
String json = JSONReader.loadJSON("VMTests/vmBitwiseLogicOperationTest.json");
|
||||||
|
|
Loading…
Reference in New Issue