Cosmos/source/Indy.IL2CPU/Assembler/x86/Push.cs
2008-11-09 12:50:58 +00:00

13 lines
No EOL
282 B
C#

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