mirror of
https://github.com/67-6f-64/AntiOreans-CodeDevirtualizer
synced 2026-06-08 10:18:33 +00:00
15 lines
347 B
C++
15 lines
347 B
C++
#include "dolphin_handler.hpp"
|
|
|
|
#include <idp.hpp>
|
|
|
|
dolphin_handler::dolphin_handler(uint16_t index)
|
|
: wild_handler(index)
|
|
{
|
|
|
|
}
|
|
|
|
bool dolphin_handler::map_handler_specific(instruction_container& instructions, wild_context& context)
|
|
{
|
|
msg("Attempting to map specific handler of type DOLPHIN: %04X.\n", this->index);
|
|
return false;
|
|
} |