using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Cosmos.Assembler.x86 { /// /// Puts the result of the divide into EAX, and the remainder in EDX /// [Cosmos.Assembler.OpCode("idiv")] public class IDivide: InstructionWithDestinationAndSize { } }