Pascal/Delphi binding (#987)
* Pascal/Delphi binding Pascal/Delphi language binding * update credits
This commit is contained in:

committed by
Nguyen Anh Quynh

parent
c7be4a2160
commit
84220d8360
32
bindings/pascal/unicorn/M68kConst.pas
Normal file
32
bindings/pascal/unicorn/M68kConst.pas
Normal file
@ -0,0 +1,32 @@
|
||||
// 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.
|
Reference in New Issue
Block a user