Is there a way to output a disassembly listing file in Beebasm? For reference, all? other assemblers I have seen can do this, e.g.:
acme --report <filepath>
tass64 -L <filepath>
ca65 --listing <filepath>
xa -P <filepath>
dasm -L <filepath>
vasm -l <filepath>
I do know Beebasm can output a symbols file. I'm sure this is complicated by COPYBLOCK shenanigans, but ought to be possible in some form nonetheless?
For those who don't know, a listing file outputs every line of the source asm, prefixed with the address and often the hex bytes that are output by that line. It makes debugging easier, and opens the door to source level debugging/analysis tools.
acme --report <filepath>
tass64 -L <filepath>
ca65 --listing <filepath>
xa -P <filepath>
dasm -L <filepath>
vasm -l <filepath>
I do know Beebasm can output a symbols file. I'm sure this is complicated by COPYBLOCK shenanigans, but ought to be possible in some form nonetheless?
For those who don't know, a listing file outputs every line of the source asm, prefixed with the address and often the hex bytes that are output by that line. It makes debugging easier, and opens the door to source level debugging/analysis tools.
Statistics: Posted by TobyLobster — Fri Mar 14, 2025 10:40 am