Skip to content

Commit

Permalink
Release v0.3
Browse files Browse the repository at this point in the history
* Change -i option: inline analysis is opt-in now.
* Speed up the start time by calling objdump later.
  • Loading branch information
namhyung committed Dec 31, 2022
1 parent 7f3c757 commit 2e32a1c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions das.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* DAS - DisASsembler (not for MB)
*
* Copyright (C) 2017-2018 Namhyung Kim <namhyung@gmail.com>
* Copyright (C) 2017-2022 Namhyung Kim <namhyung@gmail.com>
*
* Released under MIT license.
*/
Expand All @@ -17,7 +17,7 @@ import (
)

const (
DasVersion string = "v0.2"
DasVersion string = "v0.3"
)

const (
Expand Down

0 comments on commit 2e32a1c

Please sign in to comment.