mirror of
https://github.com/serhack/snowman.git
synced 2025-02-17 00:29:13 +00:00
s
This commit is contained in:
parent
06cc95121c
commit
cc1ee97a3f
12
README.md
12
README.md
@ -1,2 +1,12 @@
|
||||
# snowman
|
||||
Fork of snowman decompiler. Improved. THIS IS A WORK IN PROGRESS.
|
||||
Fork of snowman decompiler. Improved. THIS IS A WORK IN PROGRESS.
|
||||
|
||||
## Build
|
||||
|
||||
To build the project, simply type:
|
||||
|
||||
```
|
||||
make
|
||||
```
|
||||
|
||||
You need latest version of Boost, Ninja and QT5 Library.
|
@ -26,7 +26,7 @@ class ArmDisassembler: public core::arch::Disassembler {
|
||||
int mode_;
|
||||
|
||||
public:
|
||||
explicit ArmDisassembler(const ArmArchitecture *architecture);
|
||||
ArmDisassembler(const ArmArchitecture *architecture);
|
||||
|
||||
virtual ~ArmDisassembler();
|
||||
|
||||
|
@ -83,7 +83,7 @@ public:
|
||||
*
|
||||
* \param x Sized value.
|
||||
*/
|
||||
explicit AbstractValue(const SizedValue &x):
|
||||
AbstractValue(const SizedValue &x):
|
||||
size_(x.size()), zeroBits_(x.value() ^ bitMask<ConstantValue>(size_)), oneBits_(x.value())
|
||||
{}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user