mirror of
https://github.com/fadden/6502bench.git
synced 2025-01-14 07:29:44 +00:00
5548469ba1
We emit address adjustments like "LDA thing+1", which are usually small values. Sometimes they're large, e.g. "LDA thing-61440", which is harder to understand than "LDA thing-$F000". So now we show small adjustments in decimal, and large adjustments in hex. The current definition of "small" is abs(adjust) < 256.