-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndOpcode.Generated.cs
More file actions
36 lines (31 loc) · 1.34 KB
/
AndOpcode.Generated.cs
File metadata and controls
36 lines (31 loc) · 1.34 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
/*****************************************************************************
* *
* AndOpcode.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 an "and". *
* *
*****************************************************************************/
using System;
using System.Collections.Generic;
namespace MetaphysicsIndustries.Build
{
public partial class AndOpcode : Opcode
{
public AndOpcode()
{
}
public override byte IlByte
{
get { return 0x5F; }
}
public override string AssemblerName
{
get { return "and"; }
}
}
}