added comments in developer_info man page

This commit is contained in:
stefan schippers 2024-04-19 23:53:36 +02:00
parent b525252612
commit 6fc89f8d0b
2 changed files with 20 additions and 6 deletions

View File

@ -1173,9 +1173,13 @@ C {verilog_timescale.sym} 1050 -100 0 0 {name=s1 timestep="1ns" precision="1ns"
xschem raw datasets
get number of datasets (simulation runs)
xschem raw value node n [dataset]
xschem raw value node n [dset]
return n-th value of 'node' in raw file
If n is given as empty string {} return value at cursor b, dataset not used in this case
dset is the dataset to look into in case of multiple runs (first run = 0).
if dset = -1 consider n as the absolute position into the whole data file
(all datasets combined).
If n is given as empty string {} return value at cursor b,
dset not used in this case
xschem raw loaded
return hierarchy level where raw file was loaded or -1 if no raw loaded
@ -1197,8 +1201,11 @@ C {verilog_timescale.sym} 1050 -100 0 0 {name=s1 timestep="1ns" precision="1ns"
xschem raw points [dset]
print simulation points for dataset 'dset' (default: all dataset points combined)
xschem raw set node n value [dataset]
xschem raw set node n value [dset]
change loaded raw file data node[n] to value
dset is the dataset to look into in case of multiple runs (first run = 0)
dset = -1: consider n as the absolute position in the whole raw file
(all datasets combined)
xschem raw table_read tablefile
read a tabular data file.

View File

@ -3680,9 +3680,13 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg
* xschem raw datasets
* get number of datasets (simulation runs)
*
* xschem raw value node n [dataset]
* xschem raw value node n [dset]
* return n-th value of 'node' in raw file
* If n is given as empty string {} return value at cursor b, dataset not used in this case
* dset is the dataset to look into in case of multiple runs (first run = 0).
* if dset = -1 consider n as the absolute position into the whole data file
* (all datasets combined).
* If n is given as empty string {} return value at cursor b,
* dset not used in this case
*
* xschem raw loaded
* return hierarchy level where raw file was loaded or -1 if no raw loaded
@ -3704,8 +3708,11 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg
* xschem raw points [dset]
* print simulation points for dataset 'dset' (default: all dataset points combined)
*
* xschem raw set node n value [dataset]
* xschem raw set node n value [dset]
* change loaded raw file data node[n] to value
* dset is the dataset to look into in case of multiple runs (first run = 0)
* dset = -1: consider n as the absolute position in the whole raw file
* (all datasets combined)
*
* xschem raw table_read tablefile
* read a tabular data file.