First page Back Continue Last page Graphics
Fixing the problem (maybe)
Can we fix the problem with:
- if (iTemperature[0] != iTemperature[1])
Nope! Compilers produce...
- MOVE R1, iTemperature[0]
MOVE R2, iTemperature[1]
SUBTRACT R1, R2
JCOND ZERO, TempOK
Detonate!
TempOK:
...