Reding for inc assebbly code

This commit is contained in:
Lukáš Plevač 2023-11-20 19:26:26 +01:00
parent 04dd00aee0
commit d232355349
3 changed files with 66 additions and 27 deletions

View File

@ -1,8 +0,0 @@
define:
0 [ABC][DE]
1 [AB][CDE]
data:
0001111
instructions:

42
codes/inc.asm Normal file
View File

@ -0,0 +1,42 @@
#
# 1 2 3 4 5 6 7 8
# A B C D E F G H
#
define:
0 [ABC][DE]
1 [AB][CDE]
data:
1011{FT} # {FT} is TUE BINDING hold
instructions:
# mark last if is 1 if exist and replace this and open base C
#
# /
# - > - - > - - > - > - > - - > - > - - - - /
# | | | | | | | | | | | | | | | | | | | | | |
# - - - - - - - - - - - - - - - - - - - - - - -
# A B C D E A B C D E A B C D E A B C D E A B C
#
# if next bit is 1 it again replace this and open base C this is chain reaction
#
{D*E*F*T*G*} {D*E*A*B*C*H*}
# remove all markers
{DEFTG} {DEABCH}
# set 1 end this unvrap last 0
{C*D*E*}
# shift 1 end to center of register cell if possible to by eble of unvrap by 0
{B*C*D*}
# set 0
{ABC} {DE}
# remove last 0
{ABC}
# set last 0 to 1
{A*B*}

View File

@ -26,28 +26,33 @@ class Register:
# @param mol molecule reprezenting register # @param mol molecule reprezenting register
# #
def instruction(self, IMols): def instruction(self, IMols):
for mol in IMols: # @todo: while chainging
# try bind mol to all possible bindings for _ in range(20):
self.doAllBinding(mol) for mol in IMols:
# try bind mol to all possible bindings
self.doAllBinding(mol)
# remove unbinded chains from register (because new imol have bind on older chain with more bases that register) for mol in IMols:
# --- # remove unbinded chains from register (because new imol have bind on older chain with more bases that register)
# ||| # ---
# --- # |||
# # ---
# ---- R #
self.removeUnbinded() # ---- R
self.removeUnbinded()
# remove unbinded chains from register (because new imol have bind on more posisin on register that older) for mol in IMols:
# -- # remove unbinded chains from register (because new imol have bind on more posisin on register that older)
# # --
# --- #
# ||| # ---
# ---- R # |||
self.removeReplaced() # ---- R
self.removeReplaced()
# remove all unstable binded chains binded on 1 base or lower for mol in IMols:
self.removeUnstable() # remove all unstable binded chains binded on 1 base or lower
self.removeUnstable()
## ##
# remove unbinded chains from register (because new imol have bind on more posisin on register that older) # remove unbinded chains from register (because new imol have bind on more posisin on register that older)