From 2e32a1cbdbd61257daec73e46ad8c20b1aef2eb6 Mon Sep 17 00:00:00 2001 From: Namhyung Kim Date: Sat, 31 Dec 2022 13:41:39 -0800 Subject: [PATCH] Release v0.3 * Change -i option: inline analysis is opt-in now. * Speed up the start time by calling objdump later. --- README.md | 7 +++++-- das.go | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f65091e..ef5d039 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ DAS - disassembler ================== -DAS is a wrapper of disassembler (`objdump -d`) which support user interactions on terminal. +DAS is an interactive disassembler inspired by `perf annotate`. It basically +wraps the raw disassemly output from `objdump -d` and provides more information +and functionality like instruction help, jump/call following, string lookup and +function inlining info. https://github.com/namhyung/das @@ -39,5 +42,5 @@ If you have golang environment setup: Or, just download the binary: - $ wget https://github.com/namhyung/das/releases/download/v0.2/das-linux-amd64 + $ wget https://github.com/namhyung/das/releases/download/v0.3/das-linux-amd64 $ sudo install -D das-linux-amd64 /usr/local/bin/das diff --git a/das.go b/das.go index 1180a81..20b1b5e 100644 --- a/das.go +++ b/das.go @@ -1,7 +1,7 @@ /* * DAS - DisASsembler (not for MB) * - * Copyright (C) 2017-2018 Namhyung Kim + * Copyright (C) 2017-2022 Namhyung Kim * * Released under MIT license. */ @@ -17,7 +17,7 @@ import ( ) const ( - DasVersion string = "v0.2" + DasVersion string = "v0.3" ) const (