Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
epidemian
GitHub Repository: epidemian/gravity
Path: blob/master/src/utils/gravity_debug.h
1214 views
1
//
2
// gravity_debug.h
3
// gravity
4
//
5
// Created by Marco Bambini on 01/04/16.
6
// Copyright © 2016 CreoLabs. All rights reserved.
7
//
8
9
#ifndef __GRAVITY_DEBUG__
10
#define __GRAVITY_DEBUG__
11
12
#include "gravity_opcodes.h"
13
14
const char *opcode_constname (int n);
15
const char *opcode_name (opcode_t op);
16
const char *gravity_disassemble (const char *bcode, uint32_t blen);
17
18
#endif
19
20