mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
8 lines
No EOL
161 B
C#
8 lines
No EOL
161 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
[OpCode("pop")]
|
|
public class Pop: InstructionWithDestinationAndSize {
|
|
}
|
|
} |