about summary refs log tree commit diff stats
path: root/miasm2/jitter/arch/JitCore.c
blob: 739beb745290fc57797fe178f80f76870caeaaa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <Python.h>
#include "JitCore.h"

block_id Resolve_dst(uint64_t addr, uint64_t is_local)
{
	block_id b;
	b.address = addr;
	b.is_local = is_local;
	return b;
}