/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/gui/Src/Disassembler/Architecture.h
17 строк
431 B
Duncan Ogilvie
Update Zydis in the UI and remove DisassemblyPopup
19 сен 2023, 07:25
19 сен 2023, 07:25
5797dae
Код
Авторство
О чём код?
#pragma once /* This should probably take some inspiration from Zydis: - Address space min/max (64 vs 32 bit basically) - Disassembly architecture (likely should return a reference to a disassembler) */ class Architecture { public: virtual ~Architecture() = default; // TODO: replace this with something about address space virtual bool disasm64() const = 0; virtual bool addr64() const = 0; };