Koen_Be3840 wrote
In the mult.tst
repeat 50 {
ticktock;
}
Do we always know how many steps it takes to compute a task? Or do we have to guess?
The number of ticks in the test scripts is generally enough to complete the program tests as described in the project.
In the case of Mult.asm, the task is described as computing multiplication using repeated addition. I wrote a general 16 by 16 multiply routine and it was failing because it took more than 50 ticks to run. So I upped the number a bit and the test was happy.
--Mark