EOS 2
1.1.0
Einfache Objektbasierte Sprache
EosLegoEv3Lib
src
de
lathanda
eos
ev3
bytecode
Instruction.java
gehe zur Dokumentation dieser Datei
1
package
de.lathanda.eos.ev3.bytecode;
2
3
public
interface
Instruction
{
4
byte
ERROR
= (byte)0x00;
5
byte
NOP
= (byte)0x01;
6
byte
PROGRAM_STOP
= (byte)0x02;
7
byte
PROGRAM_START
= (byte)0x03;
8
byte
OBJECT_STOP
= (byte)0x04;
9
byte
OBJECT_START
= (byte)0x05;
10
byte
OBJECT_TRIG
= (byte)0x06;
11
byte
IBJECT_WAIT
= (byte)0x07;
12
byte
RETURN
= (byte)0x08;
13
byte
CALL
= (byte)0x09;
14
byte
OBJECT_END
= (byte)0x0A;
15
byte
SLEEP
= (byte)0x0B;
16
byte
PROGRAM_INFO
= (byte)0x0C;
17
byte
LABEL
= (byte)0x0D;
18
byte
PROBE
= (byte)0x0E;
19
byte
DO
= (byte)0x0F;
20
byte
ADD8
= (byte)0x10;
21
byte
ADD16
= (byte)0x11;
22
byte
ADD32
= (byte)0x12;
23
byte
ADDF
= (byte)0x13;
24
byte
SUB8
= (byte)0x14;
25
byte
SUB16
= (byte)0x15;
26
byte
SUB32
= (byte)0x16;
27
byte
SUBF
= (byte)0x17;
28
byte
MUL8
= (byte)0x18;
29
byte
MUL16
= (byte)0x19;
30
byte
MUL32
= (byte)0x1A;
31
byte
MULF
= (byte)0x1B;
32
byte
DIV8
= (byte)0x1C;
33
byte
DIV16
= (byte)0x1D;
34
byte
DIV32
= (byte)0x1E;
35
byte
DIVF
= (byte)0x1F;
36
byte
OR8
= (byte)0x20;
37
byte
OR16
= (byte)0x21;
38
byte
OR32
= (byte)0x22;
39
40
byte
AND8
= (byte)0x24;
41
byte
AND16
= (byte)0x25;
42
byte
AND32
= (byte)0x26;
43
44
byte
XOR8
= (byte)0x28;
45
byte
XOR16
= (byte)0x29;
46
byte
XOR32
= (byte)0x2A;
47
48
byte
RL8
= (byte)0x2C;
49
byte
RL16
= (byte)0x2D;
50
byte
RL32
= (byte)0x2E;
51
byte
INIT
= (byte)0x2F;
52
byte
MOVE8_8
= (byte)0x30;
53
byte
MOVE8_16
= (byte)0x31;
54
byte
MOVE8_32
= (byte)0x32;
55
byte
MOVE8_F
= (byte)0x33;
56
byte
MOVE16_8
= (byte)0x34;
57
byte
MOVE16_16
= (byte)0x35;
58
byte
MOVE16_32
= (byte)0x36;
59
byte
MOVE16_F
= (byte)0x37;
60
byte
MOVE32_8
= (byte)0x38;
61
byte
MOVE32_16
= (byte)0x39;
62
byte
MOVE32_32
= (byte)0x3A;
63
byte
MOVE32_F
= (byte)0x3B;
64
byte
MOVEF_8
= (byte)0x3C;
65
byte
MOVEF_16
= (byte)0x3D;
66
byte
MOVEF_32
= (byte)0x3E;
67
byte
MOVEF_F
= (byte)0x3F;
68
byte
JR
= (byte)0x40;
69
byte
JR_FALSE
= (byte)0x41;
70
byte
JR_TRUE
= (byte)0x42;
71
byte
JR_NAN
= (byte)0x43;
72
byte
CP_LT8
= (byte)0x44;
73
byte
CP_LT16
= (byte)0x45;
74
byte
CP_LT32
= (byte)0x46;
75
byte
CP_LTF
= (byte)0x47;
76
byte
CP_GT8
= (byte)0x48;
77
byte
CP_GT16
= (byte)0x49;
78
byte
CP_GT32
= (byte)0x4A;
79
byte
CP_GTF
= (byte)0x4B;
80
byte
CP_EQ8
= (byte)0x4C;
81
byte
CP_EQ16
= (byte)0x4D;
82
byte
CP_EQ32
= (byte)0x4E;
83
byte
CP_EQF
= (byte)0x4F;
84
byte
CP_NEQ8
= (byte)0x50;
85
byte
CP_NEQ16
= (byte)0x51;
86
byte
CP_NEQ32
= (byte)0x52;
87
byte
CP_NEQF
= (byte)0x53;
88
byte
CP_LTEQ8
= (byte)0x54;
89
byte
CP_LTEQ16
= (byte)0x55;
90
byte
CP_LTEQ32
= (byte)0x56;
91
byte
CP_LTEQF
= (byte)0x57;
92
byte
CP_GTEQ8
= (byte)0x58;
93
byte
CP_GTEQ16
= (byte)0x59;
94
byte
CP_GTEQ32
= (byte)0x5A;
95
byte
CP_GTEQF
= (byte)0x5B;
96
byte
SELECT8
= (byte)0x5C;
97
byte
SELECT16
= (byte)0x5D;
98
byte
SELECT32
= (byte)0x5E;
99
byte
SELECTF
= (byte)0x5F;
100
byte
SYSTEM
= (byte)0x60;
101
byte
PORT_CNV_OUTPUT
= (byte)0x61;
102
byte
PORT_CNV_INPUT
= (byte)0x62;
103
byte
NOTE_TO_FREQ
= (byte)0x63;
104
byte
JR_LT8
= (byte)0x64;
105
byte
JR_LT16
= (byte)0x65;
106
byte
JR_LT32
= (byte)0x66;
107
byte
JR_LTF
= (byte)0x67;
108
byte
JR_GT8
= (byte)0x68;
109
byte
JR_GT16
= (byte)0x69;
110
byte
JR_GT32
= (byte)0x6A;
111
byte
JR_GTF
= (byte)0x6B;
112
byte
JR_EQ8
= (byte)0x6C;
113
byte
JR_EQ16
= (byte)0x6D;
114
byte
JR_EQ32
= (byte)0x6E;
115
byte
JR_EQF
= (byte)0x6F;
116
byte
JR_NEQ8
= (byte)0x70;
117
byte
JR_NEQ16
= (byte)0x71;
118
byte
JR_NEQ32
= (byte)0x72;
119
byte
JR_NEQF
= (byte)0x73;
120
byte
JR_LTEQ8
= (byte)0x74;
121
byte
JR_LTEQ16
= (byte)0x75;
122
byte
JR_LTEQ32
= (byte)0x76;
123
byte
JR_LTEQF
= (byte)0x77;
124
byte
JR_GTEQ8
= (byte)0x78;
125
byte
JR_GTEQ16
= (byte)0x79;
126
byte
JR_GTEQ32
= (byte)0x7A;
127
byte
JR_GTEQF
= (byte)0x7B;
128
byte
INFO
= (byte)0x7C;
129
byte
STRING
= (byte)0x7D;
130
byte
MEMORY_WRITE
= (byte)0x7E;
131
byte
MEMORY_READ
= (byte)0x7F;
132
byte
UI_FLUSH
= (byte)0x80;
133
byte
UI_READ
= (byte)0x81;
134
byte
UI_WRITE
= (byte)0x82;
135
byte
UI_BUTTON
= (byte)0x83;
136
byte
UI_DRAW
= (byte)0x84;
137
byte
TIMER_WAIT
= (byte)0x85;
138
byte
TIMER_READY
= (byte)0x86;
139
byte
TIMER_READ
= (byte)0x87;
140
byte
BPO
= (byte)0x88;
141
byte
BPI
= (byte)0x89;
142
byte
BP2
= (byte)0x8A;
143
byte
BP3
= (byte)0x8B;
144
byte
PB_SET
= (byte)0x8C;
145
byte
MATH
= (byte)0x8D;
146
byte
RANDOM
= (byte)0x8E;
147
byte
TIMER_READ_US
= (byte)0x8F;
148
byte
KEEP_ALIVE
= (byte)0x90;
149
byte
COM_READ
= (byte)0x91;
150
byte
COM_WRITE
= (byte)0x92;
151
152
byte
SOUND
= (byte)0x94;
153
byte
SOUND_TEST
= (byte)0x95;
154
byte
SOUND_READY
= (byte)0x96;
155
156
byte
INPUT_DEVICE_LIST
= (byte)0x98;
157
byte
INPUT_DEVICE
= (byte)0x99;
158
byte
INPUT_READ
= (byte)0x9A;
159
byte
INPUT_TEST
= (byte)0x9B;
160
byte
INPUT_READY
= (byte)0x9C;
161
byte
INPUT_READSI
= (byte)0x9D;
162
byte
INPUT_READEXT
= (byte)0x9E;
163
byte
INPUT_WRITE
= (byte)0x9F;
164
165
byte
OUTPUT_SET_TYPE
= (byte)0xA1;
166
byte
OUTPUT_RESET
= (byte)0xA2;
167
byte
OUTPUT_STOP
= (byte)0xA3;
168
byte
OUTPUT_POWER
= (byte)0xA4;
169
byte
OUTPUT_SPEED
= (byte)0xA5;
170
byte
OUTPUT_START
= (byte)0xA6;
171
byte
OUTPUT_POLARITY
= (byte)0xA7;
172
byte
OUTPUT_READ
= (byte)0xA8;
173
byte
OUTPUT_TEST
= (byte)0xA9;
174
byte
OUTPUT_READY
= (byte)0xAA;
175
176
byte
OUTPUT_STEP_POWER
= (byte)0xAC;
177
byte
OUTPUT_TIME_POWER
= (byte)0xAD;
178
byte
OUTPUT_STEP_SPEED
= (byte)0xAE;
179
byte
OUTPUT_TIME_SPEED
= (byte)0xAF;
180
byte
OUTPUT_STEP_SYNC
= (byte)0xB0;
181
byte
OUTPUT_TIME_SYNC
= (byte)0xB1;
182
byte
OUTPUT_CLR_COUNT
= (byte)0xB2;
183
byte
OUTPUT_GET_COUNT
= (byte)0xB3;
184
byte
OUTPUT_PRG_STOP
= (byte)0xB4;
185
186
187
188
189
190
191
192
193
194
195
196
197
byte
FILE
= (byte)0xC0;
198
byte
ARRAY
= (byte)0xC1;
199
byte
ARRAY_WRITE
= (byte)0xC2;
200
byte
ARRAY_READ
= (byte)0xC3;
201
byte
ARRAY_APPEND
= (byte)0xC4;
202
byte
MEMORY_USAGE
= (byte)0xC5;
203
byte
FILENAME
= (byte)0xC6;
204
205
byte
READ8
= (byte)0xC8;
206
byte
READ16
= (byte)0xC9;
207
byte
READ32
= (byte)0xCA;
208
byte
READF
= (byte)0xCB;
209
byte
WRITE8
= (byte)0xCC;
210
byte
WRITE16
= (byte)0xCD;
211
byte
WRITE32
= (byte)0xCE;
212
byte
WRITEF
= (byte)0xCF;
213
byte
COM_READY
= (byte)0xD0;
214
byte
COM_TEST
= (byte)0xD1;
215
216
byte
COM_GET
= (byte)0xD3;
217
byte
COM_SET
= (byte)0xD4;
218
219
220
221
byte
MAILBOX_OPEN
= (byte)0xD8;
222
byte
MAILBOX_WRITE
= (byte)0xD9;
223
byte
MAILBOX_READ
= (byte)0xDA;
224
byte
MAILBOX_TEST
= (byte)0xDB;
225
byte
MAILBOX_READY
= (byte)0xDC;
226
byte
MAILBOX_CLOSE
= (byte)0xDD;
227
}
de.lathanda.eos.ev3.bytecode.Instruction
Definition:
Instruction.java:3
de.lathanda.eos.ev3.bytecode.Instruction.NOP
byte NOP
Definition:
Instruction.java:5
de.lathanda.eos.ev3.bytecode.Instruction.CP_EQ16
byte CP_EQ16
Definition:
Instruction.java:81
de.lathanda.eos.ev3.bytecode.Instruction.FILENAME
byte FILENAME
Definition:
Instruction.java:203
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_SPEED
byte OUTPUT_SPEED
Definition:
Instruction.java:169
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_STEP_SPEED
byte OUTPUT_STEP_SPEED
Definition:
Instruction.java:178
de.lathanda.eos.ev3.bytecode.Instruction.COM_READ
byte COM_READ
Definition:
Instruction.java:149
de.lathanda.eos.ev3.bytecode.Instruction.UI_BUTTON
byte UI_BUTTON
Definition:
Instruction.java:135
de.lathanda.eos.ev3.bytecode.Instruction.DIVF
byte DIVF
Definition:
Instruction.java:35
de.lathanda.eos.ev3.bytecode.Instruction.BPI
byte BPI
Definition:
Instruction.java:141
de.lathanda.eos.ev3.bytecode.Instruction.BP2
byte BP2
Definition:
Instruction.java:142
de.lathanda.eos.ev3.bytecode.Instruction.READ16
byte READ16
Definition:
Instruction.java:206
de.lathanda.eos.ev3.bytecode.Instruction.READF
byte READF
Definition:
Instruction.java:208
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_TEST
byte OUTPUT_TEST
Definition:
Instruction.java:173
de.lathanda.eos.ev3.bytecode.Instruction.JR_GT32
byte JR_GT32
Definition:
Instruction.java:110
de.lathanda.eos.ev3.bytecode.Instruction.RL8
byte RL8
Definition:
Instruction.java:48
de.lathanda.eos.ev3.bytecode.Instruction.MOVE8_8
byte MOVE8_8
Definition:
Instruction.java:52
de.lathanda.eos.ev3.bytecode.Instruction.MAILBOX_TEST
byte MAILBOX_TEST
Definition:
Instruction.java:224
de.lathanda.eos.ev3.bytecode.Instruction.BP3
byte BP3
Definition:
Instruction.java:143
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_STOP
byte OUTPUT_STOP
Definition:
Instruction.java:167
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_DEVICE
byte INPUT_DEVICE
Definition:
Instruction.java:157
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_STEP_POWER
byte OUTPUT_STEP_POWER
Definition:
Instruction.java:176
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_READSI
byte INPUT_READSI
Definition:
Instruction.java:161
de.lathanda.eos.ev3.bytecode.Instruction.JR_LT8
byte JR_LT8
Definition:
Instruction.java:104
de.lathanda.eos.ev3.bytecode.Instruction.JR_NAN
byte JR_NAN
Definition:
Instruction.java:71
de.lathanda.eos.ev3.bytecode.Instruction.MAILBOX_READ
byte MAILBOX_READ
Definition:
Instruction.java:223
de.lathanda.eos.ev3.bytecode.Instruction.INFO
byte INFO
Definition:
Instruction.java:128
de.lathanda.eos.ev3.bytecode.Instruction.CALL
byte CALL
Definition:
Instruction.java:13
de.lathanda.eos.ev3.bytecode.Instruction.UI_DRAW
byte UI_DRAW
Definition:
Instruction.java:136
de.lathanda.eos.ev3.bytecode.Instruction.MOVE16_8
byte MOVE16_8
Definition:
Instruction.java:56
de.lathanda.eos.ev3.bytecode.Instruction.SOUND
byte SOUND
Definition:
Instruction.java:152
de.lathanda.eos.ev3.bytecode.Instruction.TIMER_READY
byte TIMER_READY
Definition:
Instruction.java:138
de.lathanda.eos.ev3.bytecode.Instruction.INIT
byte INIT
Definition:
Instruction.java:51
de.lathanda.eos.ev3.bytecode.Instruction.JR_LTEQ8
byte JR_LTEQ8
Definition:
Instruction.java:120
de.lathanda.eos.ev3.bytecode.Instruction.TIMER_WAIT
byte TIMER_WAIT
Definition:
Instruction.java:137
de.lathanda.eos.ev3.bytecode.Instruction.CP_NEQ16
byte CP_NEQ16
Definition:
Instruction.java:85
de.lathanda.eos.ev3.bytecode.Instruction.CP_LT8
byte CP_LT8
Definition:
Instruction.java:72
de.lathanda.eos.ev3.bytecode.Instruction.JR_GTEQ32
byte JR_GTEQ32
Definition:
Instruction.java:126
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_READY
byte INPUT_READY
Definition:
Instruction.java:160
de.lathanda.eos.ev3.bytecode.Instruction.ADD32
byte ADD32
Definition:
Instruction.java:22
de.lathanda.eos.ev3.bytecode.Instruction.MAILBOX_WRITE
byte MAILBOX_WRITE
Definition:
Instruction.java:222
de.lathanda.eos.ev3.bytecode.Instruction.RANDOM
byte RANDOM
Definition:
Instruction.java:146
de.lathanda.eos.ev3.bytecode.Instruction.MOVE16_16
byte MOVE16_16
Definition:
Instruction.java:57
de.lathanda.eos.ev3.bytecode.Instruction.JR_NEQ16
byte JR_NEQ16
Definition:
Instruction.java:117
de.lathanda.eos.ev3.bytecode.Instruction.WRITE16
byte WRITE16
Definition:
Instruction.java:210
de.lathanda.eos.ev3.bytecode.Instruction.MOVEF_8
byte MOVEF_8
Definition:
Instruction.java:64
de.lathanda.eos.ev3.bytecode.Instruction.OR8
byte OR8
Definition:
Instruction.java:36
de.lathanda.eos.ev3.bytecode.Instruction.XOR32
byte XOR32
Definition:
Instruction.java:46
de.lathanda.eos.ev3.bytecode.Instruction.ARRAY_READ
byte ARRAY_READ
Definition:
Instruction.java:200
de.lathanda.eos.ev3.bytecode.Instruction.JR_EQ8
byte JR_EQ8
Definition:
Instruction.java:112
de.lathanda.eos.ev3.bytecode.Instruction.OBJECT_END
byte OBJECT_END
Definition:
Instruction.java:14
de.lathanda.eos.ev3.bytecode.Instruction.SOUND_TEST
byte SOUND_TEST
Definition:
Instruction.java:153
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_TIME_POWER
byte OUTPUT_TIME_POWER
Definition:
Instruction.java:177
de.lathanda.eos.ev3.bytecode.Instruction.ADD8
byte ADD8
Definition:
Instruction.java:20
de.lathanda.eos.ev3.bytecode.Instruction.COM_GET
byte COM_GET
Definition:
Instruction.java:216
de.lathanda.eos.ev3.bytecode.Instruction.MOVE8_32
byte MOVE8_32
Definition:
Instruction.java:54
de.lathanda.eos.ev3.bytecode.Instruction.SUB16
byte SUB16
Definition:
Instruction.java:25
de.lathanda.eos.ev3.bytecode.Instruction.CP_GTEQ8
byte CP_GTEQ8
Definition:
Instruction.java:92
de.lathanda.eos.ev3.bytecode.Instruction.MEMORY_READ
byte MEMORY_READ
Definition:
Instruction.java:131
de.lathanda.eos.ev3.bytecode.Instruction.CP_GTEQF
byte CP_GTEQF
Definition:
Instruction.java:95
de.lathanda.eos.ev3.bytecode.Instruction.JR_GTEQF
byte JR_GTEQF
Definition:
Instruction.java:127
de.lathanda.eos.ev3.bytecode.Instruction.MOVE8_16
byte MOVE8_16
Definition:
Instruction.java:53
de.lathanda.eos.ev3.bytecode.Instruction.AND16
byte AND16
Definition:
Instruction.java:41
de.lathanda.eos.ev3.bytecode.Instruction.PORT_CNV_INPUT
byte PORT_CNV_INPUT
Definition:
Instruction.java:102
de.lathanda.eos.ev3.bytecode.Instruction.JR_LT32
byte JR_LT32
Definition:
Instruction.java:106
de.lathanda.eos.ev3.bytecode.Instruction.CP_LTEQF
byte CP_LTEQF
Definition:
Instruction.java:91
de.lathanda.eos.ev3.bytecode.Instruction.WRITE8
byte WRITE8
Definition:
Instruction.java:209
de.lathanda.eos.ev3.bytecode.Instruction.JR_LTEQ32
byte JR_LTEQ32
Definition:
Instruction.java:122
de.lathanda.eos.ev3.bytecode.Instruction.MULF
byte MULF
Definition:
Instruction.java:31
de.lathanda.eos.ev3.bytecode.Instruction.NOTE_TO_FREQ
byte NOTE_TO_FREQ
Definition:
Instruction.java:103
de.lathanda.eos.ev3.bytecode.Instruction.SELECT8
byte SELECT8
Definition:
Instruction.java:96
de.lathanda.eos.ev3.bytecode.Instruction.RETURN
byte RETURN
Definition:
Instruction.java:12
de.lathanda.eos.ev3.bytecode.Instruction.TIMER_READ
byte TIMER_READ
Definition:
Instruction.java:139
de.lathanda.eos.ev3.bytecode.Instruction.CP_NEQF
byte CP_NEQF
Definition:
Instruction.java:87
de.lathanda.eos.ev3.bytecode.Instruction.RL32
byte RL32
Definition:
Instruction.java:50
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_RESET
byte OUTPUT_RESET
Definition:
Instruction.java:166
de.lathanda.eos.ev3.bytecode.Instruction.PROBE
byte PROBE
Definition:
Instruction.java:18
de.lathanda.eos.ev3.bytecode.Instruction.BPO
byte BPO
Definition:
Instruction.java:140
de.lathanda.eos.ev3.bytecode.Instruction.PB_SET
byte PB_SET
Definition:
Instruction.java:144
de.lathanda.eos.ev3.bytecode.Instruction.COM_READY
byte COM_READY
Definition:
Instruction.java:213
de.lathanda.eos.ev3.bytecode.Instruction.JR_EQ32
byte JR_EQ32
Definition:
Instruction.java:114
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_GET_COUNT
byte OUTPUT_GET_COUNT
Definition:
Instruction.java:183
de.lathanda.eos.ev3.bytecode.Instruction.MOVE32_8
byte MOVE32_8
Definition:
Instruction.java:60
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_POLARITY
byte OUTPUT_POLARITY
Definition:
Instruction.java:171
de.lathanda.eos.ev3.bytecode.Instruction.CP_LTEQ8
byte CP_LTEQ8
Definition:
Instruction.java:88
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_READ
byte OUTPUT_READ
Definition:
Instruction.java:172
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_CLR_COUNT
byte OUTPUT_CLR_COUNT
Definition:
Instruction.java:182
de.lathanda.eos.ev3.bytecode.Instruction.CP_LT16
byte CP_LT16
Definition:
Instruction.java:73
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_STEP_SYNC
byte OUTPUT_STEP_SYNC
Definition:
Instruction.java:180
de.lathanda.eos.ev3.bytecode.Instruction.TIMER_READ_US
byte TIMER_READ_US
Definition:
Instruction.java:147
de.lathanda.eos.ev3.bytecode.Instruction.DIV16
byte DIV16
Definition:
Instruction.java:33
de.lathanda.eos.ev3.bytecode.Instruction.CP_NEQ8
byte CP_NEQ8
Definition:
Instruction.java:84
de.lathanda.eos.ev3.bytecode.Instruction.CP_LTF
byte CP_LTF
Definition:
Instruction.java:75
de.lathanda.eos.ev3.bytecode.Instruction.DIV32
byte DIV32
Definition:
Instruction.java:34
de.lathanda.eos.ev3.bytecode.Instruction.CP_GT16
byte CP_GT16
Definition:
Instruction.java:77
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_READEXT
byte INPUT_READEXT
Definition:
Instruction.java:162
de.lathanda.eos.ev3.bytecode.Instruction.PORT_CNV_OUTPUT
byte PORT_CNV_OUTPUT
Definition:
Instruction.java:101
de.lathanda.eos.ev3.bytecode.Instruction.FILE
byte FILE
Definition:
Instruction.java:197
de.lathanda.eos.ev3.bytecode.Instruction.CP_GT32
byte CP_GT32
Definition:
Instruction.java:78
de.lathanda.eos.ev3.bytecode.Instruction.MOVEF_32
byte MOVEF_32
Definition:
Instruction.java:66
de.lathanda.eos.ev3.bytecode.Instruction.MOVE8_F
byte MOVE8_F
Definition:
Instruction.java:55
de.lathanda.eos.ev3.bytecode.Instruction.SUBF
byte SUBF
Definition:
Instruction.java:27
de.lathanda.eos.ev3.bytecode.Instruction.MUL32
byte MUL32
Definition:
Instruction.java:30
de.lathanda.eos.ev3.bytecode.Instruction.SELECT32
byte SELECT32
Definition:
Instruction.java:98
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_TIME_SPEED
byte OUTPUT_TIME_SPEED
Definition:
Instruction.java:179
de.lathanda.eos.ev3.bytecode.Instruction.ARRAY
byte ARRAY
Definition:
Instruction.java:198
de.lathanda.eos.ev3.bytecode.Instruction.MEMORY_USAGE
byte MEMORY_USAGE
Definition:
Instruction.java:202
de.lathanda.eos.ev3.bytecode.Instruction.ARRAY_APPEND
byte ARRAY_APPEND
Definition:
Instruction.java:201
de.lathanda.eos.ev3.bytecode.Instruction.MUL16
byte MUL16
Definition:
Instruction.java:29
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_PRG_STOP
byte OUTPUT_PRG_STOP
Definition:
Instruction.java:184
de.lathanda.eos.ev3.bytecode.Instruction.PROGRAM_STOP
byte PROGRAM_STOP
Definition:
Instruction.java:6
de.lathanda.eos.ev3.bytecode.Instruction.MOVE16_32
byte MOVE16_32
Definition:
Instruction.java:58
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_TEST
byte INPUT_TEST
Definition:
Instruction.java:159
de.lathanda.eos.ev3.bytecode.Instruction.OR16
byte OR16
Definition:
Instruction.java:37
de.lathanda.eos.ev3.bytecode.Instruction.UI_FLUSH
byte UI_FLUSH
Definition:
Instruction.java:132
de.lathanda.eos.ev3.bytecode.Instruction.CP_GTF
byte CP_GTF
Definition:
Instruction.java:79
de.lathanda.eos.ev3.bytecode.Instruction.MUL8
byte MUL8
Definition:
Instruction.java:28
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_TIME_SYNC
byte OUTPUT_TIME_SYNC
Definition:
Instruction.java:181
de.lathanda.eos.ev3.bytecode.Instruction.CP_LTEQ32
byte CP_LTEQ32
Definition:
Instruction.java:90
de.lathanda.eos.ev3.bytecode.Instruction.JR_LTEQF
byte JR_LTEQF
Definition:
Instruction.java:123
de.lathanda.eos.ev3.bytecode.Instruction.ADDF
byte ADDF
Definition:
Instruction.java:23
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_POWER
byte OUTPUT_POWER
Definition:
Instruction.java:168
de.lathanda.eos.ev3.bytecode.Instruction.SELECTF
byte SELECTF
Definition:
Instruction.java:99
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_READ
byte INPUT_READ
Definition:
Instruction.java:158
de.lathanda.eos.ev3.bytecode.Instruction.CP_EQF
byte CP_EQF
Definition:
Instruction.java:83
de.lathanda.eos.ev3.bytecode.Instruction.JR_LTF
byte JR_LTF
Definition:
Instruction.java:107
de.lathanda.eos.ev3.bytecode.Instruction.JR_GT8
byte JR_GT8
Definition:
Instruction.java:108
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_START
byte OUTPUT_START
Definition:
Instruction.java:170
de.lathanda.eos.ev3.bytecode.Instruction.WRITEF
byte WRITEF
Definition:
Instruction.java:212
de.lathanda.eos.ev3.bytecode.Instruction.CP_GT8
byte CP_GT8
Definition:
Instruction.java:76
de.lathanda.eos.ev3.bytecode.Instruction.STRING
byte STRING
Definition:
Instruction.java:129
de.lathanda.eos.ev3.bytecode.Instruction.PROGRAM_INFO
byte PROGRAM_INFO
Definition:
Instruction.java:16
de.lathanda.eos.ev3.bytecode.Instruction.DIV8
byte DIV8
Definition:
Instruction.java:32
de.lathanda.eos.ev3.bytecode.Instruction.DO
byte DO
Definition:
Instruction.java:19
de.lathanda.eos.ev3.bytecode.Instruction.RL16
byte RL16
Definition:
Instruction.java:49
de.lathanda.eos.ev3.bytecode.Instruction.JR_TRUE
byte JR_TRUE
Definition:
Instruction.java:70
de.lathanda.eos.ev3.bytecode.Instruction.READ32
byte READ32
Definition:
Instruction.java:207
de.lathanda.eos.ev3.bytecode.Instruction.READ8
byte READ8
Definition:
Instruction.java:205
de.lathanda.eos.ev3.bytecode.Instruction.MEMORY_WRITE
byte MEMORY_WRITE
Definition:
Instruction.java:130
de.lathanda.eos.ev3.bytecode.Instruction.IBJECT_WAIT
byte IBJECT_WAIT
Definition:
Instruction.java:11
de.lathanda.eos.ev3.bytecode.Instruction.SUB8
byte SUB8
Definition:
Instruction.java:24
de.lathanda.eos.ev3.bytecode.Instruction.CP_EQ32
byte CP_EQ32
Definition:
Instruction.java:82
de.lathanda.eos.ev3.bytecode.Instruction.CP_LTEQ16
byte CP_LTEQ16
Definition:
Instruction.java:89
de.lathanda.eos.ev3.bytecode.Instruction.JR_NEQ32
byte JR_NEQ32
Definition:
Instruction.java:118
de.lathanda.eos.ev3.bytecode.Instruction.CP_LT32
byte CP_LT32
Definition:
Instruction.java:74
de.lathanda.eos.ev3.bytecode.Instruction.LABEL
byte LABEL
Definition:
Instruction.java:17
de.lathanda.eos.ev3.bytecode.Instruction.COM_SET
byte COM_SET
Definition:
Instruction.java:217
de.lathanda.eos.ev3.bytecode.Instruction.ERROR
byte ERROR
Definition:
Instruction.java:4
de.lathanda.eos.ev3.bytecode.Instruction.XOR8
byte XOR8
Definition:
Instruction.java:44
de.lathanda.eos.ev3.bytecode.Instruction.MOVE16_F
byte MOVE16_F
Definition:
Instruction.java:59
de.lathanda.eos.ev3.bytecode.Instruction.JR_GTEQ16
byte JR_GTEQ16
Definition:
Instruction.java:125
de.lathanda.eos.ev3.bytecode.Instruction.SELECT16
byte SELECT16
Definition:
Instruction.java:97
de.lathanda.eos.ev3.bytecode.Instruction.JR_GTEQ8
byte JR_GTEQ8
Definition:
Instruction.java:124
de.lathanda.eos.ev3.bytecode.Instruction.SOUND_READY
byte SOUND_READY
Definition:
Instruction.java:154
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_READY
byte OUTPUT_READY
Definition:
Instruction.java:174
de.lathanda.eos.ev3.bytecode.Instruction.OBJECT_START
byte OBJECT_START
Definition:
Instruction.java:9
de.lathanda.eos.ev3.bytecode.Instruction.MATH
byte MATH
Definition:
Instruction.java:145
de.lathanda.eos.ev3.bytecode.Instruction.ARRAY_WRITE
byte ARRAY_WRITE
Definition:
Instruction.java:199
de.lathanda.eos.ev3.bytecode.Instruction.SYSTEM
byte SYSTEM
Definition:
Instruction.java:100
de.lathanda.eos.ev3.bytecode.Instruction.CP_EQ8
byte CP_EQ8
Definition:
Instruction.java:80
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_DEVICE_LIST
byte INPUT_DEVICE_LIST
Definition:
Instruction.java:156
de.lathanda.eos.ev3.bytecode.Instruction.JR_GT16
byte JR_GT16
Definition:
Instruction.java:109
de.lathanda.eos.ev3.bytecode.Instruction.AND32
byte AND32
Definition:
Instruction.java:42
de.lathanda.eos.ev3.bytecode.Instruction.CP_NEQ32
byte CP_NEQ32
Definition:
Instruction.java:86
de.lathanda.eos.ev3.bytecode.Instruction.CP_GTEQ32
byte CP_GTEQ32
Definition:
Instruction.java:94
de.lathanda.eos.ev3.bytecode.Instruction.ADD16
byte ADD16
Definition:
Instruction.java:21
de.lathanda.eos.ev3.bytecode.Instruction.JR_LT16
byte JR_LT16
Definition:
Instruction.java:105
de.lathanda.eos.ev3.bytecode.Instruction.SLEEP
byte SLEEP
Definition:
Instruction.java:15
de.lathanda.eos.ev3.bytecode.Instruction.AND8
byte AND8
Definition:
Instruction.java:40
de.lathanda.eos.ev3.bytecode.Instruction.MOVE32_F
byte MOVE32_F
Definition:
Instruction.java:63
de.lathanda.eos.ev3.bytecode.Instruction.MOVEF_F
byte MOVEF_F
Definition:
Instruction.java:67
de.lathanda.eos.ev3.bytecode.Instruction.CP_GTEQ16
byte CP_GTEQ16
Definition:
Instruction.java:93
de.lathanda.eos.ev3.bytecode.Instruction.OUTPUT_SET_TYPE
byte OUTPUT_SET_TYPE
Definition:
Instruction.java:165
de.lathanda.eos.ev3.bytecode.Instruction.UI_WRITE
byte UI_WRITE
Definition:
Instruction.java:134
de.lathanda.eos.ev3.bytecode.Instruction.COM_TEST
byte COM_TEST
Definition:
Instruction.java:214
de.lathanda.eos.ev3.bytecode.Instruction.MOVEF_16
byte MOVEF_16
Definition:
Instruction.java:65
de.lathanda.eos.ev3.bytecode.Instruction.OBJECT_STOP
byte OBJECT_STOP
Definition:
Instruction.java:8
de.lathanda.eos.ev3.bytecode.Instruction.JR_EQF
byte JR_EQF
Definition:
Instruction.java:115
de.lathanda.eos.ev3.bytecode.Instruction.MAILBOX_CLOSE
byte MAILBOX_CLOSE
Definition:
Instruction.java:226
de.lathanda.eos.ev3.bytecode.Instruction.COM_WRITE
byte COM_WRITE
Definition:
Instruction.java:150
de.lathanda.eos.ev3.bytecode.Instruction.JR_LTEQ16
byte JR_LTEQ16
Definition:
Instruction.java:121
de.lathanda.eos.ev3.bytecode.Instruction.MOVE32_16
byte MOVE32_16
Definition:
Instruction.java:61
de.lathanda.eos.ev3.bytecode.Instruction.JR_GTF
byte JR_GTF
Definition:
Instruction.java:111
de.lathanda.eos.ev3.bytecode.Instruction.JR
byte JR
Definition:
Instruction.java:68
de.lathanda.eos.ev3.bytecode.Instruction.UI_READ
byte UI_READ
Definition:
Instruction.java:133
de.lathanda.eos.ev3.bytecode.Instruction.WRITE32
byte WRITE32
Definition:
Instruction.java:211
de.lathanda.eos.ev3.bytecode.Instruction.JR_EQ16
byte JR_EQ16
Definition:
Instruction.java:113
de.lathanda.eos.ev3.bytecode.Instruction.JR_NEQF
byte JR_NEQF
Definition:
Instruction.java:119
de.lathanda.eos.ev3.bytecode.Instruction.OBJECT_TRIG
byte OBJECT_TRIG
Definition:
Instruction.java:10
de.lathanda.eos.ev3.bytecode.Instruction.OR32
byte OR32
Definition:
Instruction.java:38
de.lathanda.eos.ev3.bytecode.Instruction.MAILBOX_OPEN
byte MAILBOX_OPEN
Definition:
Instruction.java:221
de.lathanda.eos.ev3.bytecode.Instruction.MOVE32_32
byte MOVE32_32
Definition:
Instruction.java:62
de.lathanda.eos.ev3.bytecode.Instruction.SUB32
byte SUB32
Definition:
Instruction.java:26
de.lathanda.eos.ev3.bytecode.Instruction.XOR16
byte XOR16
Definition:
Instruction.java:45
de.lathanda.eos.ev3.bytecode.Instruction.JR_FALSE
byte JR_FALSE
Definition:
Instruction.java:69
de.lathanda.eos.ev3.bytecode.Instruction.INPUT_WRITE
byte INPUT_WRITE
Definition:
Instruction.java:163
de.lathanda.eos.ev3.bytecode.Instruction.MAILBOX_READY
byte MAILBOX_READY
Definition:
Instruction.java:225
de.lathanda.eos.ev3.bytecode.Instruction.JR_NEQ8
byte JR_NEQ8
Definition:
Instruction.java:116
de.lathanda.eos.ev3.bytecode.Instruction.KEEP_ALIVE
byte KEEP_ALIVE
Definition:
Instruction.java:148
de.lathanda.eos.ev3.bytecode.Instruction.PROGRAM_START
byte PROGRAM_START
Definition:
Instruction.java:7
Impressum