@celox-sim/celox 0.1.31 → 0.1.32

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/e2e.test.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@celox-sim/celox",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "description": "TypeScript runtime for Celox HDL simulation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@celox-sim/celox-napi": "0.1.31"
32
+ "@celox-sim/celox-napi": "0.1.32"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "vitest": ">=1.0.0"
package/src/e2e.test.ts CHANGED
@@ -2105,7 +2105,7 @@ module Top (
2105
2105
  bus: modport Bus::consumer [2],
2106
2106
  out: output logic<8>,
2107
2107
  ) {
2108
- assign out = bus.data[0] + bus.data[1];
2108
+ assign out = bus[0].data + bus[1].data;
2109
2109
  }
2110
2110
  `;
2111
2111