vhelin / wla-dx

WLA DX - Yet Another GB-Z80/Z80/Z80N/6502/65C02/65CE02/65816/68000/6800/6801/6809/8008/8080/HUC6280/SPC-700/SuperFX Multi Platform Cross Assembler Package
Other
546 stars 98 forks source link

Support for a symbol file format used by openMSX #637

Closed mdagois closed 2 weeks ago

mdagois commented 2 weeks ago

The openMSX emulator debugger cannot read the NOCASH and WLA symbol file formats. Instead it uses a simple format using equ expressions. For example, assuming a label my_label at address $1234, the corresponding entry in the symbol file would be my_label: equ 1234H. In this PR, I added a new option to wlalink, -sE, to export a symbol file in the equ format.

vhelin commented 2 weeks ago

Nice, thank you!