diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-07 07:49:24 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-07 07:49:24 +0200 |
commit | 492288d13db59eb946ef44dc4c5b4fa815217791 (patch) | |
tree | 01b5850dccfd77927361c36d5f380adde650758c | |
parent | 3a8482652759411ed2dfc837c3cc6f98ae032158 (diff) | |
download | ghdl-492288d13db59eb946ef44dc4c5b4fa815217791.tar.gz ghdl-492288d13db59eb946ef44dc4c5b4fa815217791.tar.bz2 ghdl-492288d13db59eb946ef44dc4c5b4fa815217791.zip |
gdbinit: adjust after renaming.
-rw-r--r-- | .gdbinit | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ # Gdb commands useful to debug ghdl define pt -call disp_tree.disp_iir ($arg0, 1, 10) +call vhdl.disp_tree.disp_iir ($arg0, 1, 10) end document pt @@ -9,7 +9,7 @@ Print the structure of the iirs that is $arg0. end define ptf -call disp_tree.disp_iir ($arg0, 1, 0) +call vhdl.disp_tree.disp_iir ($arg0, 1, 0) end document ptf @@ -17,7 +17,7 @@ Print the iirs that is $arg0. end define pt1 -call disp_tree.disp_iir ($arg0, 1, 1) +call vhdl.disp_tree.disp_iir ($arg0, 1, 1) end define prt @@ -47,7 +47,7 @@ Print flatly the list of iirs that is $arg0. end define ptc -call disp_tree.disp_chain ($arg0, 0, 0) +call vhdl.disp_tree.disp_chain ($arg0, 0, 0) end document ptc |