temporarily disable elisp exception tests
[bpt/guile.git] / module / scripts / disassemble.scm
CommitLineData
72f74528
AW
1;;; Disassemble --- Disassemble .go files into something human-readable
2
610295ec 3;; Copyright 2005, 2008, 2009, 2011, 2012, 2013 Free Software Foundation, Inc.
72f74528
AW
4;;
5;; This program is free software; you can redistribute it and/or
83ba2d37
NJ
6;; modify it under the terms of the GNU Lesser General Public License
7;; as published by the Free Software Foundation; either version 3, or
72f74528
AW
8;; (at your option) any later version.
9;;
10;; This program is distributed in the hope that it will be useful,
11;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
83ba2d37 13;; Lesser General Public License for more details.
72f74528 14;;
83ba2d37
NJ
15;; You should have received a copy of the GNU Lesser General Public
16;; License along with this software; see the file COPYING.LESSER. If
17;; not, write to the Free Software Foundation, Inc., 51 Franklin
18;; Street, Fifth Floor, Boston, MA 02110-1301 USA
72f74528 19
8141fc3b 20;;; Author: Ludovic Courtès <ludo@gnu.org>
72f74528
AW
21;;; Author: Andy Wingo <wingo@pobox.com>
22
23;;; Commentary:
24
610295ec 25;; Usage: disassemble FILE...
72f74528
AW
26
27;;; Code:
28
29(define-module (scripts disassemble)
610295ec 30 #:use-module (system vm disassembler)
72f74528
AW
31 #:export (disassemble))
32
a1a2ed53
AW
33(define %summary "Disassemble a compiled .go file.")
34
8141fc3b 35(define (disassemble . files)
93009a7a 36 (for-each disassemble-file files))
6d66647d
AW
37
38(define main disassemble)