diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2015-04-22 22:52:36 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2015-04-24 22:49:59 +0100 |
commit | cf75d6c37e15e321e82e7f4ceebcf847b4f057fc (patch) | |
tree | 2afef4c763a792185d4364f300ed1414c3e0509d /gdb/testsuite/ChangeLog | |
parent | dcbd20eb1499db937785881aca2f9584a330723c (diff) | |
download | gdb-cf75d6c37e15e321e82e7f4ceebcf847b4f057fc.zip gdb-cf75d6c37e15e321e82e7f4ceebcf847b4f057fc.tar.gz gdb-cf75d6c37e15e321e82e7f4ceebcf847b4f057fc.tar.bz2 |
gdb: Add support for dumping to verilog hex format.
Extend the gdb 'dump' command to allow creating output in verilog hex
format. Add some tests to cover new functionality. As bfd does not
currently support reading in verilog hex formats the tests only cover
the 'dump' command, not the 'restore' command.
gdb/ChangeLog:
* cli/cli-dump.c (verilog_cmdlist): New variable.
(dump_verilog_memory): New function.
(dump_verilog_value): New function.
(verilog_dump_command): New function.
(_initialize_cli_dump): Add new commands to support verilog dump
format.
* NEWS: Add entry for "dump verilog".
gdb/doc/ChangeLog:
* gdb.texinfo (Dump/Restore Files): Add detail about verilog dump
format.
gdb/testsuite/ChangeLog:
* gdb.base/dump.exp: Add *.verilog files to all_files list. Add
new tests for verilog output.
Diffstat (limited to 'gdb/testsuite/ChangeLog')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index bd0f146..c37d84a 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com> + + * gdb.base/dump.exp: Add *.verilog files to all_files list. Add + new tests for verilog output. + 2015-04-24 Yao Qi <yao.qi@linaro.org> * boards/remote-gdbserver-on-localhost.exp: New file. |