Here is my initial implementation of a #noemit directive, it may take on or off. Symbols which are declared after a #noemit on, but before #noemit off will not be included in the symbol dump of that assembly. So for example, in the following snippet, FOO and QUX will be in the symbol dump, but BAR and BAZ will not be.
FOO= 0
#noemit on
BAR = 1
BAZ = 2
#noemit off
QUX = 3
Here is my initial implementation of a
#noemit
directive, it may takeon
oroff
. Symbols which are declared after a#noemit on
, but before#noemit off
will not be included in the symbol dump of that assembly. So for example, in the following snippet,FOO
andQUX
will be in the symbol dump, butBAR
andBAZ
will not be.