aaaaaa123456789

Results 24 issues of aaaaaa123456789

After the long discussion the other way about whether something like `123abc` should be valid or not, the issue right now is that it's impossible to safely implement any feature...

enhancement
rgbasm

At the beginning of a file, there's no current section. Putting any code or data there is an error. Sometimes it's desirable to return to that state. For example, if...

enhancement
rgbasm

The documentation of `FOR` isn't explicit about the meaning of its _stop_ argument. The documentation currently says that the value "increments from _start_ to _stop_", but in actuality `FOR` breaks...

docs
rgbasm

[Note: proposal taken from the debate in gbdev's #asm on 2022-03-02.] Fixing some data across many banks is easy. For instance, consider placing the current bank number at the end...

enhancement
rgbasm
rgblink

(Note: I'm well aware that this is a complicated, long term feature that won't see the light of day for a long time. "This is very complicated to implement" and...

enhancement
rgbasm
rgblink

Right now, character constants and strings use the same syntax. This can lead to a lot of really surprising behaviors: ``` db "ab" ; emits $61, $62 db ("ab") ;...

enhancement
rgbasm

Best shown with an example of current behavior: ``` [06:27:34] ax6@n2 ~/Desktop/temp $ cat > test.asm SECTION "test", ROMX[$4000], BANK[1] rept 20000 db 0 endr [06:28:04] ax6@n2 ~/Desktop/temp $ rgbasm...

enhancement
rgbasm
rgblink

I'm sure that this has been mentioned before, but I've been coming up with a full feature proposal and I'd like to know how feasible it is. What follows is...

enhancement
rgbasm

Considering the various proposals related to the charmap feature (#97, both in #256, and a few comments I've heard occasionally), I figured I'd draft up an idea that would cover...

enhancement
rgbasm

Some projects are a hairy mess of file inclusions. It happens, and there's not much we can do about it after some time. The consequence of this is that, after...

enhancement
rgbasm