Raffzahn

Results 8 issues of Raffzahn

# Ist: Low active signal names are usually rendered with an Overline. Recomendet implementation ( according to https://github.com/drom/wavedrom/wiki/Unicode ) is the usage of Unicode overline code sequences. While this is...

enhancement

# Ist: As of now, terms are not connected ( see wavedrom/wavedrom#94 ) and can only have one output signal. # Soll: Connected terms enable the creation of multiple output...

enhancement

# Ist: Right now any signal used as input for a term is implied 'created'. There should be a way to add an optional definition for every (external) input signal....

enhancement

# Ist: Input signals with similar names are not connected: Example: ``` javascript { assign: ["out", ["OR", ["AND", ["INV", "a"], "b"], ["NAND", ["INV", "b"], "a"] ] ] } ``` ![connected1](https://cloud.githubusercontent.com/assets/6282715/3566163/9d35ef28-0ae8-11e4-9589-98f904aff8e0.png)...

enhancement

Puting input signal names into 'vonnection tas' coudl improve readability. Especially as long input signals are not front alligened. ![label2](https://cloud.githubusercontent.com/assets/6282715/3565710/7118509c-0acb-11e4-86da-f73b2c63ccb0.png) Output signals may be handled similar. As long as there...

enhancement

It'll be great if all signal names could be 'pulled left' to be alligned left hand ![label1](https://cloud.githubusercontent.com/assets/6282715/3565678/573699ba-0ac9-11e4-8050-663fd378c266.png)

enhancement

# Ist: Right now it's only possible to a single term to describe a network. Seperate terms will result in seperate network. Example: ``` javascript { assign: ["out", ["OR", ["AND",...

enhancement

To bring term names into a more logic nameing, INV should be changed to NOT, according to the names used in IEC60617. NEG is also possible but less readable. Same...