A. Fachat
A. Fachat
Device interrupts are currently handled via standard DEVCMD chain. Interrupt handling could be faster if: - separate interrupt chain, that only contains those devices that are not run inside the...
According to https://github.com/arduino/arduino-ide/issues/1788 the brltty driver needs to be uninstalled when using this driver, and I can confirm that. it should be added to the README, to run `sudo apt...
The 4502 (AKA 65CE02) and 4510 are variants of the 6502 used in the C65 and in the Amiga (as keyboard processor IIRC). These are currently getting more tracking due...
To create proper load addresses from an o65 file, file65 should be able to extract a segment start address and print it either in hex (lo/hi), or other formats. proposal:...
Make this work: ``` devend1 .word devend2 devend2 =devend devend ``` Currently this results in a `1000:Label 'devend2' not defined`
In the error message when a label was defined that had already been defined, put the location (source file, line number) of the original location. Rationale: in large code bases...
I want to replace things like: ``` #define FOO BAR+1 ``` with ``` FOO = BAR+1 ``` Unfortunately this does not work if BAR is an undefined label that is...
... e.g. by specifying "-" as output file name
In reloc65, -X allows to extract all segments, text, data, and bss combined with no gap in between them. Sometimes it may be preferable to have code at some place,...
According to some docs, the C65 used the 4510 processor. What are the differences to the 65ce02 in terms of processor core? I understand that the 4510 includes CIA(s) -...