Skip to content

Commit

Permalink
moved pc trace from verilog to cpp as tracer module
Browse files Browse the repository at this point in the history
  • Loading branch information
drom committed Sep 1, 2024
1 parent 8aada87 commit a270049
Show file tree
Hide file tree
Showing 4 changed files with 761 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/indexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function main () {
xassign(arr, body);
}

fs.writeFileSync('./index.js', `'use strict';\n`, 'utf8');
fs.writeFileSync('./index.js', '\'use strict\';\n', 'utf8');
const root = path.resolve(process.cwd(), 'specs');
if (fs.pathExistsSync(root)) {

Expand Down
2 changes: 1 addition & 1 deletion lib/amba-pdf-dl.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const { createWriteStream, existsSync } = require('fs');
const { mkdir } = require("fs/promises");
const { mkdir } = require('fs/promises');
const path = require('path');
const { Readable } = require('stream');
const { finished } = require('stream/promises');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"homepage": "https://github.com/sifive/duh-bus#readme",
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
"extends": "@drom/eslint-config/eslint8/node12"
},
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
Expand Down
Loading

0 comments on commit a270049

Please sign in to comment.