13 lines
258 B
Plaintext
13 lines
258 B
Plaintext
package slangc.bytecode;
|
|
|
|
public class Instruction {
|
|
|
|
public Instruction() {
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
public short encodeFirstOp(MajorOpcode major, MinorOpcode minor, StackType type, int extraops) {
|
|
return 0; //TODO
|
|
}
|
|
}
|