Compiles zkasm file to a json ready for the zkExecutor
$ npm install
$ npm run build
Generate json file from zkasm file:
$ node src/zkasm.js <input.zkasm> -o <output.json>
For test purposes (partial inclusion of files):
- allowUndefinedLabels: Allows to leave labels undefined.
- allowOverwriteLabels: Allows to overwrite labels.
- allowUndefinedVariables: Allows to leave variables without declaration (undefined)
node src/zkasm.js <input.zkasm> -o <output.json> -t allowUndefinedLabels -t allowOverwriteLabels -t allowUndefinedVariables
In this link found more information about instructions.