diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-03-13 22:38:03 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-03-13 22:38:03 -0700 |
commit | f3fddb31b01d7f015d9f35b6c6312fad28177ae4 (patch) | |
tree | d5ce85d662e20b94da8bd004cc7ee631a47b7c26 /lisplib.c | |
parent | a97e0a1abfce633fc46f86c3e804a9eebb8ed7f0 (diff) | |
download | txr-f3fddb31b01d7f015d9f35b6c6312fad28177ae4.tar.gz txr-f3fddb31b01d7f015d9f35b6c6312fad28177ae4.tar.bz2 txr-f3fddb31b01d7f015d9f35b6c6312fad28177ae4.zip |
higher level disassemble function.
* lisplib.c (asm_set_entries): Autoload on usr:disassemble.
* share/txr/stdlib/asm.tl (assembler): Drop initializer
from bstr slot. Requires complex initialization for the
case when the buf is supplied by the constructor caller
for the sake of disassembling existing code.
(assembler :postinit): Handle cases when only one of
buf or bstr are set, and when both are not set,
for the greatest flexibility.
(disassemble-c-d, disassemble): New functions.
* vm.c (vm_desc_datavec): New static function.
(vm_init): Registered vm-desc-datavec intrinsic.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -630,12 +630,17 @@ static val asm_instantiate(val set_fun) static val asm_set_entries(val dlt, val fun) { - val name[] = { + val sys_name[] = { lit("assembler"), nil }; + val name[] = { + lit("disassemble"), + nil + }; - set_dlt_entries_sys(dlt, name, fun); + set_dlt_entries_sys(dlt, sys_name, fun); + set_dlt_entries(dlt, name, fun); return nil; } |