Cosmos/source/Indy.IL2CPU/Assembler/x86/And.cs
mterwoord_cp b13b8bcde9
2008-11-07 15:35:18 +00:00

10 lines
229 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.Assembler.X86 {
[OpCode(0xFFFFFFFF, "and")]
public class And: InstructionWithDestinationAndSource {
}
}