a simple (buggy) code issues 11 identical warnings:
.bss name,100
.sect ".bss" ; bug, wrong section name!
.space 45
Compiling this code first issues this error:
"t.asm", ERROR! at line 2: [E0300] Cannot redefine this section name
.sect ".bss"
and then 11 times this warning
t.asm", WARNING! at line 3: [W1500] warning: accessing the raw data of section
".bss" which is uninitialized according to
its section attributes; changes to raw
data may be lost
.space 45