forked from mdarin/gapstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevm_resource.go
More file actions
43 lines (35 loc) · 1000 Bytes
/
Copy pathevm_resource.go
File metadata and controls
43 lines (35 loc) · 1000 Bytes
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: ./genresorces.sh capstone/tests/test_evm.c
Created at: 2025-04-25 12:56:14
*/
package gapstone
//=== Found #define values in capstone/tests/test_evm.c ===
var evmCodes = map[string]string{
// EVM_CODE="\x60\x61\x50"
"EVM_CODE": "\x60\x61\x50",
}
//=== Found platform entries in capstone/tests/test_evm.c ===
var evmPlatforms = []platform{
{
// -------------------------------------------
// Platform Entry (line 67):
// Architecture: CS_ARCH_EVM
// Mode: 0
// Code: EVM_CODE
// Comment: "EVM"
arch: CS_ARCH_EVM,
mode: 0,
code: evmCodes["EVM_CODE"],
comment: "EVM",
options: []option{
{CS_OPT_DETAIL, CS_OPT_ON},
},
},
}