-
Hi
What tool chain do I need to use to compile this project?
thanks
-
Using a 8bit offset to a const pointer is not optimized.
# define Source ((char *) 0x6000)
# define Dest ((char *) 0x6100)
char index=0;
do {
Dest[index]=Source[index];
index++;
} while (index)…
-
6800 is still a work in progress in a few spots but you might find
https://github.com/EtchedPixels/CC6303
useful. It's a fairly full integer ANSI C cross compiler for 6800/6803/6303, and the 680…
-
We have some deployments where globals and BSS segments get nuked in bare-metal-ish setups. It would be good to reduce the global usage (or anything using .got).
Some examples here:
https://github…
-
The Commander X16 kernal supports seeking within files, and fseek() for cbm machines seems to be missing an assembly file that it wants: _lseek.
DOS supports a seek command:
The command is "P" (posi…
-
TL/DR: I almost figured out why the bankswitching demo doesn't work on other emulators or real hardware even though things look fine in the IDE
Something between the nesbanked.cfg linker config and…
-
### Prerequisites
- [X] I have used the predefined issue title. (e.g. "xxx@xxx: hash check failed")
- [X] I have verified that I am using the latest version of Scoop and corresponding bucket.
##…
-
Is there a way to map the execution address to a source file in .s?
Basically I'd like to debug C64 generated app and when the VICE stops at certain address I'd like to get corresponding source file …
-
Hi everyone!
We are nearing the finish line of the Conan 2.0 migration, with just a bit more than a hundred recipes left to go. I thought it would be a good time to summarize and keep track of the …
-
It is documented [here](https://cc65.github.io/doc/ca65.html#ss11.63), but it would make our lives a bit easier and better if `.IFREF` and `.REFERENCED` were a bit smarter and allowed to check if a la…