mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
9 lines
No EOL
166 B
C#
9 lines
No EOL
166 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.Compiler.Assembler.X86 {
|
|
[OpCode("pop")]
|
|
public class Pop: InstructionWithDestinationAndSize{
|
|
}
|
|
|
|
} |