mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
10 lines
287 B
Scheme
10 lines
287 B
Scheme
|
|
;;> \subsubsubsection{\scheme{(disasm f [out])}}
|
|
|
|
;;> Write a human-readable disassembly for the procedure \var{f} to
|
|
;;> the port \var{out}, defaulting to \scheme{(current-output-port)}.
|
|
|
|
(define-library (chibi disasm)
|
|
(export disasm)
|
|
(import (chibi))
|
|
(include-shared "disasm"))
|