Skip to content

Commit

Permalink
fix: fix is_arborescent
Browse files Browse the repository at this point in the history
Note: xovers not fully tested
  • Loading branch information
squillero committed Aug 12, 2024
1 parent 02e1aca commit 0157d7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/examples/assembly.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@
"source": [
"reg8 = byron.f.choice_parameter(['ah', 'bh', 'ch', 'dh', 'al', 'bl', 'cl', 'dl'])\n",
"reg16 = byron.f.choice_parameter(['ax', 'bx', 'cx', 'dx'])\n",
"int8 = byron.f.integer_parameter(0, 2**8)\n",
"int16 = byron.f.integer_parameter(0, 2**16)\n",
"int8 = byron.f.integer_parameter(0, 2 ** 8)\n",
"int16 = byron.f.integer_parameter(0, 2 ** 16)\n",
"\n",
"opcodes2 = byron.f.choice_parameter(['mov', 'add', 'sub', 'or', 'and'])\n",
"opcodes1 = byron.f.choice_parameter(['not', 'neg', 'inc', 'dec'])\n",
Expand Down

0 comments on commit 0157d7a

Please sign in to comment.