Fix space issues

This commit is contained in:
Cary R
2023-12-28 11:21:09 -08:00
parent 691eeeef99
commit 57524836f1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ it or regenerate `configure` using a newer version of `autoconf`.
The simplest way to compile this package is: The simplest way to compile this package is:
1. `cd` to the directory containing the package's source code. 1. `cd` to the directory containing the package's source code.
2. Run `sh autoconf.sh`, if building from source (and not a release). 2. Run `sh autoconf.sh`, if building from source (and not a release).
If you're building from a release, skip this step. If you're building from a release, skip this step.
+1 -1
View File
@@ -3,7 +3,7 @@ module main;
typedef enum logic [2:0] { typedef enum logic [2:0] {
ENUM_VAL = 3'b110 ENUM_VAL = 3'b110
} enumtype; } enumtype;
typedef struct packed { typedef struct packed {
enumtype e; enumtype e;
} structtype; } structtype;