mirror of
https://github.com/verilator/verilator.git
synced 2025-01-12 01:27:36 +00:00
28 lines
635 B
Plaintext
28 lines
635 B
Plaintext
# DESCRIPTION: Verilator: GDB startup file with useful defines
|
|
#
|
|
# Copyright 2012-2012 by Wilson Snyder. This program is free software; you can
|
|
# redistribute it and/or modify it under the terms of either the GNU
|
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
|
# Version 2.0.
|
|
|
|
define pn
|
|
call $arg0->dumpGdb()
|
|
end
|
|
document pn
|
|
Verilator: Print single AstNode NODEP
|
|
end
|
|
|
|
define pnt
|
|
call $arg0->dumpTreeGdb()
|
|
end
|
|
document pnt
|
|
Verilator: Print AstNode NODEP's tree
|
|
end
|
|
|
|
define watchedit
|
|
watch AstNode::s_editCntGbl==$arg0
|
|
end
|
|
document watchedit
|
|
Verilator: Create watch on where a edit number is made
|
|
end
|