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