Files
favicon-trap/bindings/pascal/unicorn/M68kConst.pas
lazymio 090686f8ed uc_ctl proposal (#1473)
* Add uc_ctl

* Add comments

* Slightly changed for bindings generation

* Generate bindings
2021-10-30 10:45:32 +08:00

42 lines
809 B
ObjectPascal

// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
unit M68kConst;
interface
const
UC_CPU_M5206_CPU = 0;
UC_CPU_M68000_CPU = 1;
UC_CPU_M68020_CPU = 2;
UC_CPU_M68030_CPU = 3;
UC_CPU_M68040_CPU = 4;
UC_CPU_M68060_CPU = 5;
UC_CPU_M5208_CPU = 6;
UC_CPU_CFV4E_CPU = 7;
UC_CPU_ANY_CPU = 8;
// M68K registers
UC_M68K_REG_INVALID = 0;
UC_M68K_REG_A0 = 1;
UC_M68K_REG_A1 = 2;
UC_M68K_REG_A2 = 3;
UC_M68K_REG_A3 = 4;
UC_M68K_REG_A4 = 5;
UC_M68K_REG_A5 = 6;
UC_M68K_REG_A6 = 7;
UC_M68K_REG_A7 = 8;
UC_M68K_REG_D0 = 9;
UC_M68K_REG_D1 = 10;
UC_M68K_REG_D2 = 11;
UC_M68K_REG_D3 = 12;
UC_M68K_REG_D4 = 13;
UC_M68K_REG_D5 = 14;
UC_M68K_REG_D6 = 15;
UC_M68K_REG_D7 = 16;
UC_M68K_REG_SR = 17;
UC_M68K_REG_PC = 18;
UC_M68K_REG_ENDING = 19;
implementation
end.