mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 05:11:08 +00:00
8 lines
No EOL
182 B
C#
8 lines
No EOL
182 B
C#
using System;
|
|
using System.Linq;
|
|
|
|
namespace Cosmos.Compiler.Assembler.X86 {
|
|
[OpCode("cmpxchg")]
|
|
public class CmpXchg: InstructionWithDestinationAndSourceAndSize {
|
|
}
|
|
} |