Eldred Habert

Results 458 comments of Eldred Habert

The way I see it, allocating sections primarily towards the end of ROMX would help catch OOB accesses there, as then those accesses would tend to fall in VRAM (then...

This seems close to #201; I'm thinking of either allowing to define "soft labels" (symbols that are defined using `EQU` syntax but aren't constant), or we'd have to create a...

The request is for ```asm ; a.asm Label: ``` ```asm ; b.asm ld hl, Label ``` ...to have the error message from `b.o` mention that a symbol with the same...

I would make `-c png:image.png` determine the box size automatically (inferring it from the amount of identical consecutive pixels on the first row), and `-c png,42:image.png`/`-c png@42:image.png` (not `:` to...

Test cases that should be added: - [x] Does `#none` correctly round-trip through `-r`? - [x] Can the comma be omitted after `#none`?

Ping @eievui5?

For functions, a simple "unique name" is, by necessity, the function's: ```asm SECTION "MyFunction", ROM0 ; (Aside: using this pattern for ROM0 functions is a good idea, but ROMX is...

This is a problem internal to the OpenBSD standard library, since it tries to use a function that it does not define. (To be precise, their implementation of a certain...

This does look similar to at least the latter issue, and also feels like a repeat of #789, where non-POSIX but C11 features were withheld, until an `_ISO_C11_SOURCE` escape hatch...

> That is intentional behavior. I believe it might required by the standard too. Well, we had the same argument in #789: we want POSIX APIs *and* C11 ones, when...