mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-10 14:26:45 +00:00
implement all aliases as instructions
This commit is contained in:
parent
b1da29d7fb
commit
9aa876df62
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetaeInstruction extends SetccInstruction {
|
||||
|
||||
public SetaeInstruction() {
|
||||
super("setae");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetbInstruction extends SetccInstruction {
|
||||
|
||||
public SetbInstruction() {
|
||||
super("setb");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetbeInstruction extends SetccInstruction {
|
||||
|
||||
public SetbeInstruction() {
|
||||
super("setbe");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetcInstruction extends SetccInstruction {
|
||||
|
||||
public SetcInstruction() {
|
||||
super("setc");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SeteInstruction extends SetccInstruction {
|
||||
|
||||
public SeteInstruction() {
|
||||
super("sete");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetglInstruction extends SetccInstruction {
|
||||
|
||||
public SetglInstruction() {
|
||||
super("setgl");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetgeInstruction extends SetccInstruction {
|
||||
|
||||
public SetgeInstruction() {
|
||||
super("setge");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetlInstruction extends SetccInstruction {
|
||||
|
||||
public SetlInstruction() {
|
||||
super("setl");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetleInstruction extends SetccInstruction {
|
||||
|
||||
public SetleInstruction() {
|
||||
super("setle");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnaInstruction extends SetccInstruction {
|
||||
|
||||
public SetnaInstruction() {
|
||||
super("setna");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnaeInstruction extends SetccInstruction {
|
||||
|
||||
public SetnaeInstruction() {
|
||||
super("setnae");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnbInstruction extends SetccInstruction {
|
||||
|
||||
public SetnbInstruction() {
|
||||
super("setnb");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnbeInstruction extends SetccInstruction {
|
||||
|
||||
public SetnbeInstruction() {
|
||||
super("setnbe");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetncInstruction extends SetccInstruction {
|
||||
|
||||
public SetncInstruction() {
|
||||
super("setnc");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetneInstruction extends SetccInstruction {
|
||||
|
||||
public SetneInstruction() {
|
||||
super("setne");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetngInstruction extends SetccInstruction {
|
||||
|
||||
public SetngInstruction() {
|
||||
super("setng");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetngeInstruction extends SetccInstruction {
|
||||
|
||||
public SetngeInstruction() {
|
||||
super("setnge");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnlInstruction extends SetccInstruction {
|
||||
|
||||
public SetnlInstruction() {
|
||||
super("setnl");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnleInstruction extends SetccInstruction {
|
||||
|
||||
public SetnleInstruction() {
|
||||
super("setnle");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnoInstruction extends SetccInstruction {
|
||||
|
||||
public SetnoInstruction() {
|
||||
super("setno");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnsInstruction extends SetccInstruction {
|
||||
|
||||
public SetnsInstruction() {
|
||||
super("setns");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetnzInstruction extends SetccInstruction {
|
||||
|
||||
public SetnzInstruction() {
|
||||
super("setnz");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetoInstruction extends SetccInstruction {
|
||||
|
||||
public SetoInstruction() {
|
||||
super("seto");
|
||||
}
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package net.simon987.server.assembly.instruction;
|
||||
|
||||
/**
|
||||
* alias of SetccInstruction
|
||||
*/
|
||||
public class SetsInstruction extends SetccInstruction {
|
||||
|
||||
public SetsInstruction() {
|
||||
super("sets");
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user