mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 21:43:08 +02:00
13 lines
176 B
Java
13 lines
176 B
Java
public class Instruction
|
|
{
|
|
public String inst;
|
|
public long addr;
|
|
|
|
public Instruction( String inst, long addr )
|
|
{
|
|
this.inst = inst;
|
|
this.addr = addr;
|
|
}
|
|
|
|
}
|