unicorn/bindings/pascal/unicorn/M68kConst.pas
Coldzer0 c1267811e2
Pascal/Delphi binding
* Pascal/Delphi binding

Pascal/Delphi language binding

* update credits

Backports commit 84220d83601ba929c56b9e1fadd1686e02cbb93c from unicorn.
2019-02-28 16:36:56 -05:00

32 lines
589 B
ObjectPascal

// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
unit M68kConst;
interface
const
// 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.