You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature to step back one instruction, and execute all instructions
The bot can only execute instructions one by one currently. Features to execute all instructions at once, and step back an instruction to see the state would be useful for debugging!
Step back
A possible solution for this would be storing all the states in a redux slice and reinitializing registers and memory according to it's previous state.
Execute all
Right now, instructions are executed with the help of the stepClick function below, which is triggered by clicking the next step button on the UI.
For executing all instructions, a possible solution would be to call emulator.cpu.step() repeatedly until the last instruction is reached.
Feature to step back one instruction, and execute all instructions
The bot can only execute instructions one by one currently. Features to execute all instructions at once, and step back an instruction to see the state would be useful for debugging!
Step back
Execute all
stepClick
function below, which is triggered by clicking thenext step
button on the UI.emulator.cpu.step()
repeatedly until the last instruction is reached.8086.js/src/components/ButtonsContainer/index.jsx
Lines 45 to 48 in 017505b
The text was updated successfully, but these errors were encountered: