Eldred Habert

Results 458 comments of Eldred Habert

I think `? :` shouldn't be a problem... hopefully.

Honestly I don't think we want to depend on a version of the Unicode Standard, and given RGBASM's existing ASCII reliance, I'm of the opinion that we should define the...

I think we should have both `ROMX FLOATING` for "floating bank", and `ROMX 42 \n FLOATING` for "floating address" (mirroring `ORG`'s usage), so that the two feature sets are orthogonal....

The semantics of `ROMX FLOATING` actually kind of suck, because then all assignments in the section have to start *somewhere*. More useful semantics would be obtained by instead placing all...

> Would it be interesting to allow taking tiles as input, and only using those? I think this might be useful if a tileset has already been generated, and one...

I guess that depends on whether the "seed tileset" is provided as a PNG (has inherent colours, but may require its own set of processing flags), or as tile data...

I don't know, the infrastructure is still kind of crude—the amount of failed tests is not reported, and their output tends to be drowned in the reports of passing tests.

That much I agree with, though for rsgbds I think I will instead make a test runner in Rust that walks through all of the test cases.

I don't like exposing arbitrary file I/O because it's just complicated: - Try eagerly reading all of the file, and potentially OOM for large files that could've been processed piecemeal,...

In theory yes, but not really because `INCBIN` means that all of the file's contents must be dumped into the ROM anyway, and we *have* to allocate that space anyway...