Files
favicon-trap/bindings/dotnet/UnicornManaged/Const/M68k.fs
2021-11-04 20:04:57 +01:00

45 lines
995 B
Forth

// For Unicorn Engine. AUTO-GENERATED FILE, DO NOT EDIT
namespace UnicornManaged.Const
open System
[<AutoOpen>]
module M68k =
// M68K CPU
let UC_CPU_M5206_CPU = 0
let UC_CPU_M68000_CPU = 1
let UC_CPU_M68020_CPU = 2
let UC_CPU_M68030_CPU = 3
let UC_CPU_M68040_CPU = 4
let UC_CPU_M68060_CPU = 5
let UC_CPU_M5208_CPU = 6
let UC_CPU_CFV4E_CPU = 7
let UC_CPU_ANY_CPU = 8
// 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