1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:17:35 +00:00

HackStudio: Add a disassembly view for the current function in debug mode

This commit is contained in:
Luke 2020-08-25 04:36:55 +01:00 committed by Andreas Kling
parent 694b86a4bf
commit 3ddc42fdf1
6 changed files with 398 additions and 1 deletions

View file

@ -3,6 +3,8 @@ set(SOURCES
Debugger/BacktraceModel.cpp
Debugger/Debugger.cpp
Debugger/DebugInfoWidget.cpp
Debugger/DisassemblyModel.cpp
Debugger/DisassemblyWidget.cpp
Debugger/VariablesModel.cpp
Editor.cpp
EditorWrapper.cpp
@ -22,4 +24,4 @@ set(SOURCES
)
serenity_bin(HackStudio)
target_link_libraries(HackStudio LibWeb LibMarkdown LibGUI LibGfx LibCore LibVT LibDebug)
target_link_libraries(HackStudio LibWeb LibMarkdown LibGUI LibGfx LibCore LibVT LibDebug LibX86)