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

[Not an issue] Where to seek for help ? #621

Closed cgimenez closed 8 months ago

cgimenez commented 8 months ago

Hi all, and thanks for wla author(s), having an assembler for a such range of CPU is amazing !

This issue is not an issue but rather a question to how to get help with wla ? Is there any forum or community space ? I've not yet assembled anything but I've read all the assembler directives and there still some question :

if foo is declared as

foo:
.DB 1, 0

How can I get the hi and low bytes of its adress ? I presume it might be something like LDA #>foo and LDA #<foo

But I did not managed to find any clue in the doc, or I missed it badly ;-)

Neui commented 8 months ago

GitHub provides the Discussions tab which this project uses.

The Arithmetics section mentions the <, > and : operators but doesn't show how to use them. There is an example for : in the Assembler Syntax - Labels section.

cgimenez commented 8 months ago

I totally missed the github discussions ;-)

Thanks !