HDLRuby 2.6.4 → 2.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/HDLRuby/sim/hruby_sim_vcd.c +2 -2
- data/lib/HDLRuby/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 928c0006bc7fee9ebff9356509ed09ad9109d310e64eea92a41f42d751d560b1
|
|
4
|
+
data.tar.gz: d63743942c8c73f79224c129ca8265995ddff3397a5628e185da497b0599a6e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7508f64a04a6662c035ce362d9193d617b022dd21bbccaa28f8c70d2a38790919f6d995b545a5082df0be6e23654a4bacb158ea6dfaaa673ea592ccac4c67f9
|
|
7
|
+
data.tar.gz: 8e77890ec50610400f848340a4ad4a4eb0d9095aff8c674ecb695cdddf9aabbd7e585b2bf5bfc8b76553612f1e216bcc7e21f00888335f07b95f54c89b88efc2
|
|
@@ -366,8 +366,8 @@ static void vcd_print_header() {
|
|
|
366
366
|
extern void init_vcd_visualizer(char* name) {
|
|
367
367
|
/* Open the resulting file with name: <name>.vcd */
|
|
368
368
|
char filename[256];
|
|
369
|
-
strncpy(filename,name,
|
|
370
|
-
strncat(filename,".vcd",
|
|
369
|
+
strncpy(filename,name,255);
|
|
370
|
+
strncat(filename,".vcd",255);
|
|
371
371
|
vcd_file = fopen(filename,"w");
|
|
372
372
|
|
|
373
373
|
/* Initialize the vizualizer printer engine. */
|
data/lib/HDLRuby/version.rb
CHANGED