-
### Description
Was this module ever **actually tested** before it was uploaded to PSGallery?
Botched use of `[System.IO.Path]::PathSeparator` is somewhere in this code, resulting in a completely …
-
It would be useful to include the [ZSMKit](https://github.com/mooinglemur/zsmkit) for ZSM playback on Commander X16. Details of how to use it from e.g. C is detailed on the website and involves a cust…
mlund updated
3 months ago
-
### Description
Seems that attempting to load any project made in LTS, results in this error.
Upon further inspecting, it seems like that the Project Tool wasn't even being used at all. I was abl…
-
Sample code:
```
struct s { int n; int d[]; };
struct s t2 = { 1, { 4 } };
```
Expected diagnostics:
```
initialization of a flexible array member is invalid
```
Actual diagnostics:
```
`…
-
When using cc65, I found myself unable to declare variables in for loops for example
This code:
```c
for (char i = 0; i < 32; i++) {
// ...
}
```
Would not compile while in other compil…
-
I'm just wondering, when would the new release of cc65 be released? Last release is almost 4 years old. And main branch has a lot of updates since then.
-
```c
#include
#include
void main()
{
}
```
```
$ cl65 -tgeos /tmp/a.c
/tmp/a.c(2): Error: Include file '(*(unsigned*)0x24).h' not found
```
See https://github.com/cc65/cc65/blob/0541b65…
-
For some reason it's not present. We can't lift the newlib version because it depends on the alternate registers which aren't available for 808x/gbz80
It's obviously not critical since it's never e…
-
In CC65 I decided to develop an NES game, while I was developing an abstraction I added a structure that is for the attributes, for ease of setting it up, I decided on bitfields but when I try to comp…
-
The compiler does not seem to handle complex bitfield manipulations when it coincides with parameter clobbering.
See [this godbolt snippet](https://godbolt.org/z/8rhz1PboP) for the minimal offending…