-
Love your tutorial. When I make I get the following:
(base) rick@rick:~/workspace/x16-hello-cc65$ make
make -C asm
make[1]: Entering directory '/home/rick/workspace/x16-hello-cc65/asm'
cl65 -t …
-
https://cc65.github.io/doc/cc65.html#s5:
> cc65 implements flexible array struct members as defined in the C99 ISO standard. As an extension, these fields may be initialized. There are several exce…
-
Hello, when I'm using either cc65 or llvm I am unable to inspect variables while debug is running even after adding them to watch.
![debugvariable](https://github.com/rolandshacks/vs64/assets/8257267…
-
In `edit.c` there is a bunch of inline asm. the cc65 optimizer needs to be turned off (on a per function basis) using:
```
#pragma optimize (push,off)
...
#pragma optimize (pop)
```
Doing thi…
-
The following C89 compliant code should compile but doesn't:
```C
struct s { int a, b; };
struct s s;
int main()
{
struct s t = s;
return 0;
}
```
Result with cc65 2.18:
```
…
-
very minor issue.
I'm getting errors when printing with commas in floating point version of the cross compiler. The following line:
? 1,2
Gives an error (it works fine in the IDE and integer…
-
I apologize if this is by design, but the default CC65 configs have space for an LC segment using some of the top 12K of the address space which doesn't seem to be currently accessible in the 8bitwork…
-
In your documentation page at https://opencbm.trikaliotis.net/opencbm-9.html there is a URL for downloading the source code in the "_Linux installation walk-through_" section:
https://spiro.trikali…
-
Compiling this code
```C
#include
int main(void)
{
unsigned char i = 1;
if (0) {
label:
printf("i is now zero\n");
} else {
printf("i is not zero\n");
}
…
-
https://github.com/cc65/cc65/blame/master/src/cc65/expr.c#L3126
```
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C gos
make[1]: Nothing to be done for `all'.
/Applications/Xcode.app/Co…