mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:47:44 +00:00
LibX86: Add an X86 instruction decoder library + basic disassembler
This will be very useful for developer tools like ProfileView, and also for future tools like debuggers and such. :^)
This commit is contained in:
parent
7cc7d303e3
commit
32d83fdee4
7 changed files with 2367 additions and 2 deletions
11
Libraries/LibX86/Makefile
Normal file
11
Libraries/LibX86/Makefile
Normal file
|
@ -0,0 +1,11 @@
|
|||
OBJS = \
|
||||
Instruction.o
|
||||
|
||||
LIBRARY = libx86.a
|
||||
|
||||
install:
|
||||
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibX86/
|
||||
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibX86/
|
||||
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
||||
|
||||
include ../../Makefile.common
|
Loading…
Add table
Add a link
Reference in a new issue