William D. Jones
William D. Jones
> I have to admit that I don't know completely what I would need to do. :) I have experience w/ Travis, I could look into it. > If no-one...
It's really exciting for me too. I'm glad you were receptive to keeping the source c89 compatible. I'm glad its paying off now :3. If ppl get worried about buffer...
>It looks like SMake doesn't support substituting variables, which is a major pain. It also explains why every SMakefile explicitly lists all files and their object files rather than substituting....
Sorry, haven't had time to check on my Linux box- will get back to you ASAP (see most recent merge). It's a sizeable number of lines, but certainly manageable (and...
@vhelin I also think it should be handled. The "common" idiom nowadays is to do a lightweight `try`/`catch`: ``` err = fgets() if(err == NULL) { return -1; } ```...
I can think of another snag for 68k, though I think this feature should be supported eventually anyway: IIRC, internally WLA-DX works in units of 64kB banks max. This works...
Is it possible to change `ROMBANKMAP` and `MEMORYMAP` to accommodate > 64kB banks max (without breaking everything)?
This has been fixed. We are now using the [`svd_encoder`](https://github.com/rust-embedded/svd) crate to write SVDs. Looking at the output, the changes compared to the previous internal parser are minimal (and include...
>What do you mean by "mutually exclusive"? What I meant by this is: _pretend_ for a second that in addition to `platform.has_assertions` you have `platform.has_synthesis`. The property would describe whether...
Hmmm, that's fair, and it doesn't really conflict with my desire to avoid an explosion of input/output files generated. Maybe my above comment could be modified to: "a single platform...