cirosantilli / vcdvcd

Python Verilog value change dump (VCD) parser library + the nifty vcdcat VCD command line pretty printer.
Other
54 stars 21 forks source link

Updated inline documentation #10

Closed christian-krieg closed 2 years ago

cirosantilli commented 4 years ago

Christian, can you split the last commit into a separate pull request? Let me know if you need any Git-fu help ;-)

cirosantilli commented 4 years ago

BTW, I changed the interface a bit on https://github.com/cirosantilli/vcdvcd/commit/ba56abd7119b7e28329c6608724c357153bc9025 (2.0.0 release), now you have to do vcd.data['signalname'].tv instead of vcd.data['signalname']['tv'] to allow nice random access to signals: https://github.com/cirosantilli/vcdvcd/#api-usage

christian-krieg commented 3 years ago

Hey Ciro,

Sorry for my silence, was on vacation and took it very serious to really relax :)

Christian, can you split the last commit into a separate pull request? Let me know if you need any Git-fu help ;-)

Sure, and I'll be happy to come back to your help offer ;)

Cheers, Christian

cirosantilli commented 3 years ago

Hi there, hope you had a good vacation!

So the easiest thing here is to git checkout master; git pull to get the latest version on master, then create a new branch git checkout -b amazing-feature, and then git cherry-pick any missing commits.

Later on you might want to learn git rebase --onto for the day that there will be too many commits to cherry pick.

Then push that branch, and create a new pull request from it.

christian-krieg commented 2 years ago

Closing this PR now to keep things clean.