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 14const char *opcode_constname (int n); 15const char *opcode_name (opcode_t op); 16const char *gravity_disassemble (const char *bcode, uint32_t blen); 17 18#endif 19 20