mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +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 {
|
|
}
|
|
} |