@yowasp/yosys 0.37.13-dev.628 → 0.37.67-dev.638

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.
@@ -1,5 +1,5 @@
1
1
  // **AUTOGENERATED FILE** **DO NOT EDIT**
2
- // Generated by ../yosys-src/techlibs/quicklogic/qlf_k6n10f/generate_bram_types_sim.py at 2023-12-12 16:12:30.916013+00:00
2
+ // Generated by ../yosys-src/techlibs/quicklogic/qlf_k6n10f/generate_bram_types_sim.py at 2024-01-06 17:35:19.527610+00:00
3
3
  `timescale 1ns /10ps
4
4
 
5
5
  module TDP36K_BRAM_A_X1_B_X1_nonsplit (
Binary file
Binary file
Binary file
package/lib/api.d.ts CHANGED
@@ -2,13 +2,17 @@ export type Tree = {
2
2
  [name: string]: Tree | string | Uint8Array
3
3
  };
4
4
 
5
+ export type OutputStream =
6
+ (bytes: Uint8Array | null) => void;
7
+
5
8
  export class Exit extends Error {
6
9
  code: number;
7
10
  files: Tree;
8
11
  }
9
12
 
10
13
  export type Command = (args?: string[], files?: Tree, options?: {
11
- printLine?: (line: string) => void,
14
+ stdout?: OutputStream | null,
15
+ stderr?: OutputStream | null,
12
16
  decodeASCII?: boolean
13
17
  }) => Promise<Tree>;
14
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yowasp/yosys",
3
- "version": "0.37.13-dev.628",
3
+ "version": "0.37.67-dev.638",
4
4
  "description": "Yosys Open SYnthesis Suite",
5
5
  "author": "Catherine <whitequark@whitequark.org>",
6
6
  "license": "ISC",
@@ -27,8 +27,8 @@
27
27
  },
28
28
  "types": "./lib/api.d.ts",
29
29
  "devDependencies": {
30
- "@bytecodealliance/jco": "^0.14.1",
31
- "@yowasp/runtime": "5.0.25",
30
+ "@bytecodealliance/jco": "0.14.2",
31
+ "@yowasp/runtime": "6.0.30",
32
32
  "esbuild": "^0.19.8"
33
33
  },
34
34
  "scripts": {