forked from knightsc/gapstone
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathspec_list_constants.go
More file actions
43 lines (37 loc) · 1.13 KB
/
Copy pathspec_list_constants.go
File metadata and controls
43 lines (37 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
Gapstone is a Go binding for the Capstone disassembly library.
For examples, try reading the *_test.go files.
Library Author: Nguyen Anh Quynh
Binding Author: Ben Nagy
License: BSD style - see LICENSE file for details
(c) 2013 COSEINC. All Rights Reserved.
THIS FILE WAS AUTO-GENERATED -- DO NOT EDIT!
Command: ./genspec.rb capstone/tests/
Created at: 2025-04-25T09:00:46+00:00
*/
package gapstone
// List of generated specs to use in tests.
const (
ArmSpec = "arm.SPEC"
Arm64Spec = "arm64.SPEC"
BasicSpec = "basic.SPEC"
BpfSpec = "bpf.SPEC"
DetailSpec = "detail.SPEC"
EvmSpec = "evm.SPEC"
IterSpec = "iter.SPEC"
M680xSpec = "m680x.SPEC"
M68kSpec = "m68k.SPEC"
MipsSpec = "mips.SPEC"
Mos65xxSpec = "mos65xx.SPEC"
PpcSpec = "ppc.SPEC"
RiscvSpec = "riscv.SPEC"
ShSpec = "sh.SPEC"
SkipdataSpec = "skipdata.SPEC"
SparcSpec = "sparc.SPEC"
SystemzSpec = "systemz.SPEC"
Tms320c64xSpec = "tms320c64x.SPEC"
TricoreSpec = "tricore.SPEC"
WasmSpec = "wasm.SPEC"
X86Spec = "x86.SPEC"
XcoreSpec = "xcore.SPEC"
)