bindings: Rename dotnet project to UnicornEngine
Add a few more properties to prepare a nuget package
This commit is contained in:
45
bindings/dotnet/UnicornEngine/Const/M68k.fs
Normal file
45
bindings/dotnet/UnicornEngine/Const/M68k.fs
Normal file
@@ -0,0 +1,45 @@
|
||||
// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
|
||||
|
||||
namespace UnicornEngine.Const
|
||||
|
||||
open System
|
||||
|
||||
[<AutoOpen>]
|
||||
module M68k =
|
||||
|
||||
// M68K CPU
|
||||
|
||||
let UC_CPU_M68K_M5206 = 0
|
||||
let UC_CPU_M68K_M68000 = 1
|
||||
let UC_CPU_M68K_M68020 = 2
|
||||
let UC_CPU_M68K_M68030 = 3
|
||||
let UC_CPU_M68K_M68040 = 4
|
||||
let UC_CPU_M68K_M68060 = 5
|
||||
let UC_CPU_M68K_M5208 = 6
|
||||
let UC_CPU_M68K_CFV4E = 7
|
||||
let UC_CPU_M68K_ANY = 8
|
||||
let UC_CPU_M68K_ENDING = 9
|
||||
|
||||
// M68K registers
|
||||
|
||||
let UC_M68K_REG_INVALID = 0
|
||||
let UC_M68K_REG_A0 = 1
|
||||
let UC_M68K_REG_A1 = 2
|
||||
let UC_M68K_REG_A2 = 3
|
||||
let UC_M68K_REG_A3 = 4
|
||||
let UC_M68K_REG_A4 = 5
|
||||
let UC_M68K_REG_A5 = 6
|
||||
let UC_M68K_REG_A6 = 7
|
||||
let UC_M68K_REG_A7 = 8
|
||||
let UC_M68K_REG_D0 = 9
|
||||
let UC_M68K_REG_D1 = 10
|
||||
let UC_M68K_REG_D2 = 11
|
||||
let UC_M68K_REG_D3 = 12
|
||||
let UC_M68K_REG_D4 = 13
|
||||
let UC_M68K_REG_D5 = 14
|
||||
let UC_M68K_REG_D6 = 15
|
||||
let UC_M68K_REG_D7 = 16
|
||||
let UC_M68K_REG_SR = 17
|
||||
let UC_M68K_REG_PC = 18
|
||||
let UC_M68K_REG_ENDING = 19
|
||||
|
||||
Reference in New Issue
Block a user