-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBranchOnLess32Opcode.Generated.cs
More file actions
40 lines (35 loc) · 1.46 KB
/
BranchOnLess32Opcode.Generated.cs
File metadata and controls
40 lines (35 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*****************************************************************************
* *
* BranchOnLess32Opcode.Generated.cs *
* 16 December 2009 *
* Project: MetaphysicsIndustries.Build *
* Written by: Richard Sartor *
* Copyright © 2009 Metaphysics Industries, Inc. *
* Date Generated: 2 March 2010 *
* *
* A class that represents a "branch on less32 branch32". *
* *
*****************************************************************************/
using System;
using System.Collections.Generic;
namespace MetaphysicsIndustries.Build
{
public partial class BranchOnLess32Opcode : Branch32Opcode
{
public BranchOnLess32Opcode()
{
}
public override byte IlByte
{
get { return 0x3F; }
}
public override int ExtraByteCount
{
get { return 4; }
}
public override string AssemblerName
{
get { return "blt"; }
}
}
}