stardot / beebasm

A portable 6502 assembler with BBC Micro style syntax
http://www.retrosoftware.co.uk/wiki/index.php/BeebAsm
GNU General Public License v3.0
84 stars 26 forks source link

The VERBOSE symbol controls verbose output #59

Closed mungre closed 2 years ago

mungre commented 3 years ago

If -v (verbose) or -q (quiet) is specified on the command-line then the VERBOSE symbol is ignored. Otherwise verbose output is controlled with VERBOSE=0 and VERBOSE=1.

It is a normal symbol so it is scoped, but it can't be changed without introducing a new scope.

Plus a minor change to the testrunner to put the -v switch before the test-specific switches, so it can be overridden with -q.

Resolves #50.