Hello everyone,

Support is added for * and ** in the last git version, and the current version of the wave option file format is now set to 1.1. Please note that wildcards inside names like /top/sub*/... are not supported yet, only synthax like /top/*/... works for now. As I have found it more convenient, support for wildcards inside names will be added on version 1.2, at the same time as simple regexp support.


So here are detailed examples using the new * and ** features :

# Dump every signals named reset in first level sub entities of top
top/*/reset

# Dump every signals named reset in recursive sub entities of top
top/**/reset

# Dump every signals of sub2 which could be anywhere in design except on top level
/**/sub2/*

# Dump every signals of sub3 which must be a first level sub entity of the top level
/*/sub3/*

# Dump every signals of the first level sub entities of sub3 (but not those of sub3)
/**/sub3/*/*


Cheers,
Jonas

_______________________________________________
Ghdl-discuss mailing list
Ghdl-discuss@gna.org
https://mail.gna.org/listinfo/ghdl-discuss

Reply via email to