Cosmos/source2/Cosmos.Assembler/x86/Push.cs
mterwoord_cp c603c1cb0c
2014-07-08 13:46:00 +00:00

14 lines
314 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Assembler.x86 {
[Cosmos.Assembler.OpCode("push")]
public class Push : InstructionWithDestinationAndSize {
public Push():base("push") {
Size = 32;
}
}
}