Hacker News new | ask | show | jobs
by megous 1653 days ago
True. I wanted to analyze some or1k binaries. No IDA support. Two weekends, and I had a disassembler and decompiler for the architecture, without writing any Java code. Just amazing.

You don't even need to describe the whole instruction set, just all the instructions that your target binary uses.

Such an amazing thing. And or1k is a nasty architecture with delay slots, which makes manual assembly reading quite tedious, etc. So the decompiler "C" output is very useful in this situation. I was in awe.