3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-22 12:22:06 +00:00

Merge pull request #5192 from garytwong/multiline-string

verilog: support newline and hex escapes in string literals
This commit is contained in:
KrystalDelusion 2025-07-08 10:27:01 +12:00 committed by GitHub
commit 1a215719e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 386 additions and 47 deletions

View file

@ -381,3 +381,6 @@ from SystemVerilog:
will process conditionals using these keywords by annotating their
representation with the appropriate ``full_case`` and/or ``parallel_case``
attributes, which are described above.)
- SystemVerilog string literals are supported (triple-quoted strings and
escape sequences such as line continuations and hex escapes).