You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vmemu/src/vmemu_t.cpp

22 lines
303 B

#include "vmemu_t.hpp"
namespace vm
{
emu_t::emu_t( vm::ctx_t *vmctx )
{
}
emu_t::~emu_t()
{
}
bool emu_t::init()
{
return {};
}
bool emu_t::get_trace( std::vector< vm::instrs::code_block_t > &entries )
{
return {};
}
} // namespace vm