summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-03-13 22:38:03 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-03-13 22:38:03 -0700
commitf3fddb31b01d7f015d9f35b6c6312fad28177ae4 (patch)
treed5ce85d662e20b94da8bd004cc7ee631a47b7c26 /lisplib.c
parenta97e0a1abfce633fc46f86c3e804a9eebb8ed7f0 (diff)
downloadtxr-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.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/lisplib.c b/lisplib.c
index 50c52356..a8e68c4a 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -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;
}