Skip to content

Commit

Permalink
Add basic COFF (.obj) file support
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Aug 25, 2023
1 parent 23edc1e commit 0c02a3b
Show file tree
Hide file tree
Showing 4 changed files with 608 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
BackedCGC,
Backend,
Blob,
Coff,
ELFCore,
ExceptionHandling,
FunctionHint,
Expand Down Expand Up @@ -81,6 +82,7 @@
"BackedCGC",
"Backend",
"Blob",
"Coff",
"ELFCore",
"ExceptionHandling",
"FunctionHint",
Expand Down
2 changes: 2 additions & 0 deletions cle/backends/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from .backend import ALL_BACKENDS, Backend, ExceptionHandling, FunctionHint, FunctionHintSource, register_backend
from .blob import Blob
from .cgc import CGC, BackedCGC
from .coff import Coff
from .elf import ELF, ELFCore, MetaELF
from .ihex import Hex
from .java.apk import Apk
Expand Down Expand Up @@ -32,6 +33,7 @@
"ELFCore",
"MetaELF",
"PE",
"Coff",
"Blob",
"CGC",
"BackedCGC",
Expand Down
Loading

0 comments on commit 0c02a3b

Please sign in to comment.