-
Take a look if the plato protocol uses zero bytes:
https://github.com/nanoflite/c64-up2400-cc65/commit/c71b398363eabf85361ab80dea12f08d0e0024d1
-
The following C function
```C
int func(int expr)
{
switch (expr) {
int i;
case 0:
i = 17;
return i;
default:
i = 16;
…
-
Hi.
Is it possible to dump the pre-defined macros, e.g. similar to as it does in GCC?
e.g. if I try something like this: ```cc65 -E -dM main.c``` then I got the following output:
```
Macro H…
-
Выяснилось: При каждом сохранении 1С перегенерирует еще и идентификаторы ExternalDataSource (внешнего источника данных)
```
91483113-cc65-47da-86d2-668790fdd3b8
7d5a9…
ghost updated
9 years ago
-
Hi! Thanks for your project!
How is your compiler built? Is it a patch of GCC or CC65 or a totally independent compiler?
Is it C89 compliant + // comments?
I would like to use it in my toolch…
-
The following code:
```C
char* const a[];
#ifdef foo
foo
bar
baz
#endif
/* Comment */
int b;
```
generates:
```
test.c:9: Warning: Incomplete array 'a[]' assumed to have one element…
-
Get @bartgrantham to write a cc65-based YM player to test the emulator.
-
I've had this come up as a friction point a couple of times where someone tried to build my code, got errors that I didn't, and it turned out the reason was that they installed cc65 with apt or they u…
-
The following code should compile but doesn't:
```C
int foo(a, b) { return a + b; }
int main()
{
foo(1, 2, 3);
return 0;
}
```
Gives:
```
test.c:5: Error: Too many arguments i…
-
The README appears to need some updates. There is no `build.sh`. There's an `osx-build.sh` but it needs to be run from the project dir and not ./build. `osx-deploy.sh` needs a `local` argument as well…