assembler / cardiograph - Add shebangs

This commit is contained in:
n loewen 2023-08-29 13:04:38 -04:00
parent 45c8fe3bd2
commit be13802e1e
2 changed files with 4 additions and 0 deletions

2
src/assembler.js Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env node
const fs = require('fs');
const { logMemory, num2hex } = require('./logging.js');

2
src/cardiograph.js Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env node
const DBG = require('./dbg.js');
const { num2hex, bool2bit } = require('./logging.js');