Clarify signed magnitude in the growth_rate macro

This commit is contained in:
Rangi 2020-12-20 23:35:22 -05:00
parent 9978126309
commit fff343349d

View File

@ -1,8 +1,8 @@
growth_rate: MACRO
; [1]/[2]*n**3 + [3]*n**2 + [4]*n - [5]
dn \1, \2
if \3 & $80 ; signed
db -\3 | $80
if \3 < 0
db -\3 | $80 ; signed magnitude
else
db \3
endc