zk/vm: Add BaseAdd and BaseMul from the arithmetic chip.

This commit is contained in:
parazyd
2022-02-08 14:26:31 +01:00
parent 9a58c7b8b3
commit 4e774c9710
4 changed files with 71 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ local type = token(l.TYPE, word_match{
local instruction = token('instruction', word_match{
'ec_add', 'ec_mul', 'ec_mul_base', 'ec_mul_short',
'ec_get_x', 'ec_get_y',
'base_add', 'base_mul',
'poseidon_hash', 'calculate_merkle_root',
'constrain_instance',
})