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 64e98fd commit e1a4c98
Show file tree
Hide file tree
Showing 4 changed files with 556 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 e1a4c98

Please sign in to comment.