1 package jrre.instructionset.push.localvariables;
2
3 import jrre.*;
4 import jrre.classloader.classfile.pool_entries.*;
5
6 public class FLoad_0 extends jrre.instructionset.Instruction {
7
8 public FLoad_0(){
9
10 // 0x22
11 name = "fload_0";
12 description = "foo foo moo poo";
13 length = 0;
14 }
15
16 /***
17 * Executes the <strong><code>fload_0</code></strong> instruction.
18 *
19 */
20 public void execute(){
21
22 Stack.pushOperand(Stack.getLocalVariable(0));
23
24 }
25
26 public String toString(){
27 return "fload_0";
28 }
29 }
This page was automatically generated by Maven