1
0
mirror of https://github.com/cc65/cc65.git synced 2025-03-12 08:32:54 +00:00

Merge pull request #2560 from binary-sequence-forks/master

Improve description of namespace access in ca65
This commit is contained in:
Bob Andrews 2024-12-15 23:01:15 +01:00 committed by GitHub
commit bfbf5cd250
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1059,7 +1059,7 @@ The namespace token (<tt/::/) is used to access other scopes:
.endscope .endscope
... ...
lda foo::bar ; Access foo in scope bar lda #foo::bar ; Access bar in scope foo
</verb></tscreen> </verb></tscreen>
The only way to deny access to a scope from the outside is to declare a scope The only way to deny access to a scope from the outside is to declare a scope