mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 13:08:56 +00:00
30 lines
1.1 KiB
Java
30 lines
1.1 KiB
Java
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
|
|
|
|
package unicorn;
|
|
|
|
public interface M68kConst {
|
|
|
|
// M68K registers
|
|
|
|
public static final int UC_M68K_REG_INVALID = 0;
|
|
public static final int UC_M68K_REG_A0 = 1;
|
|
public static final int UC_M68K_REG_A1 = 2;
|
|
public static final int UC_M68K_REG_A2 = 3;
|
|
public static final int UC_M68K_REG_A3 = 4;
|
|
public static final int UC_M68K_REG_A4 = 5;
|
|
public static final int UC_M68K_REG_A5 = 6;
|
|
public static final int UC_M68K_REG_A6 = 7;
|
|
public static final int UC_M68K_REG_A7 = 8;
|
|
public static final int UC_M68K_REG_D0 = 9;
|
|
public static final int UC_M68K_REG_D1 = 10;
|
|
public static final int UC_M68K_REG_D2 = 11;
|
|
public static final int UC_M68K_REG_D3 = 12;
|
|
public static final int UC_M68K_REG_D4 = 13;
|
|
public static final int UC_M68K_REG_D5 = 14;
|
|
public static final int UC_M68K_REG_D6 = 15;
|
|
public static final int UC_M68K_REG_D7 = 16;
|
|
public static final int UC_M68K_REG_SR = 17;
|
|
public static final int UC_M68K_REG_PC = 18;
|
|
public static final int UC_M68K_REG_ENDING = 19;
|
|
|
|
}
|