mirror of
https://github.com/tlsnotary/circuits.git
synced 2026-01-07 22:13:53 -05:00
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
const casm = require('./casmbundle');
|
|
global.fs = require('fs');
|
|
|
|
for (let i=1; i<=8; i++){
|
|
global.fs.writeFileSync('c'+i+'.out', casm.parseAndAssemble('c'+i+'.casm'));
|
|
}
|