mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-02 06:10:13 +00:00
13 lines
273 B
C#
13 lines
273 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86 {
|
|
/// <summary>
|
|
/// Represents the JE opcode
|
|
/// </summary>
|
|
[OpCode(0xFFFFFFFF, "je")]
|
|
public class JumpIfEqual: JumpBase {
|
|
}
|
|
}
|