aboutsummaryrefslogtreecommitdiffstats
path: root/.gdbinit
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-07 07:49:24 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-07 07:49:24 +0200
commit492288d13db59eb946ef44dc4c5b4fa815217791 (patch)
tree01b5850dccfd77927361c36d5f380adde650758c /.gdbinit
parent3a8482652759411ed2dfc837c3cc6f98ae032158 (diff)
downloadghdl-492288d13db59eb946ef44dc4c5b4fa815217791.tar.gz
ghdl-492288d13db59eb946ef44dc4c5b4fa815217791.tar.bz2
ghdl-492288d13db59eb946ef44dc4c5b4fa815217791.zip
gdbinit: adjust after renaming.
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit8
1 files changed, 4 insertions, 4 deletions
diff --git a/.gdbinit b/.gdbinit
index 019087679..35b6e0791 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -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