-
This code line:
```C
int i = { 0 };
```
generates
```
test.c:1: Warning: Braces around scalar initializer
```
but this code line:
```C
char* p = { 0 };
```
compiles without a …
-
Sample code:
```
enum { z = (int)1e100 };
```
Expected diagnostics:
```
expression is not an integral constant expression
```
Actual diagnostics:
```
```
-
Over at nesdev, there's been talk about how it would be useful for ca65 to automatically split 16-bit data tables, perhaps with a macro. It would also be useful in C, when the compiler knows for sure …
-
Every time i load up Minecraft with the following mods installed:
Treecapitator, and all of the mods needed to run it
Ars Magica 2, and all the mods needed to run that
Extrautilities
Optifine
Jou…
-
PS C:\Users\DSMVG> scoop install extras/gimp
Updating Scoop...
Updating Buckets...
* 92cce765fc89 trufflehog: Update to version 3.83.5 main 3 hours ago
* e60360cc8e61…
-
I use combination of .IFREF + .PROC quite often. It looks like this:
```
.IFREF snd_reset
.PROC snd_reset
LDA #0
STA APU_CHANCTRL
RTS
.ENDPROC
.ENDIF
```
Not very convenient and requi…
-
Version 0.9.6, Windows 10
Using an Alesis VI61 MIDI controller. When trying to use the MIDI Learn feature, CC64 sent by my controller is not recognized on any channel. CC63 and CC65 work.
-
What else is needed to make this boot? The docs dont say.
-
We probably need to add a wait-state to VDC memory accesses, so that the address translation has an extra 25ns clock tick to calculate the address.
-
When I try to build any of my Cross-Lib for the zx81 target with wrx I now get these errors
```
C:/z88dk/bin/../lib/target/zx81/classic/zx81_hrg.asm:20: error: undefined symbol: hrg_phase
C:/z88d…