public void TestJeWordMemCell()
        {
            var tokens = new List <Token> {
                P[PET.JE], P[PET.WordMemCell]
            };
            var command = new JeCommand(tokens, OperandsSetType.M);

            runExpectedExceptionTest(command);
        }
        public void TestJeLabel()
        {
            var tokens = new List <Token> {
                P[PET.JE], P[PET.Label1]
            };
            var command = new JeCommand(tokens, OperandsSetType.M);

            runTest(command, new List <byte[]> {
                new byte[] { 0x0F, 0x84, 0x00, 0x00 }
            });
        }