1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-06 04:41:08 +00:00

11365 Commits

Author SHA1 Message Date
Oliver Schmidt
1efe1227d6 Added apple2enh to the targets supporting waitvsync(). 2025-03-14 16:43:39 +01:00
Colin Leroy-Mira
fb63a839bf Optimize LZ4 decompressor
Use a walking out pointer instead of &out[written]. This
simplifies the code by 27 bytes and spares 15% cycles.
Tested with both the unit test and code uncompressing
10kB of data.

Renamed the labels for legibility.
2025-03-14 16:33:13 +01:00
Oliver Schmidt
ee540678e6 Improved consistency of notation for return value promotion. 2025-03-13 22:22:28 +01:00
Oliver Schmidt
3edb959298 Finally made CONIO and STDIO fully interoperable in 80 column mode.
In order to avoid undefined behaviour of programs not aware of 80 column mode, the 80 column firmware deliberately doesn't use CH but OURCH. So in order to be fully interoperable, CONIO needs to do the same. This changes introduces that behavior. So far so good.
But the 80 column firmware can also be active in 40 column mode. This scenario is not detectable with reasonable effort. Therefore the behaviour of CONIO in this scenario is _not_ improved. However, this scenario is supposed to be very uncommon - and a recent update to videomode() makes sure to not activate it anymore ourselves.
Notes:
* If a program wants to be 100% sure to not run in 40 column mode with 80 column firmware active it can call videomode(VIDEOMODE_40COL) to explicitly deactivate a potentially active 80 column firmware. However, this always implicitly clears the screen.
* In 40 column mode (contrast to 80 column mode) the 80 column firmware updates CH to reflect OURCH. So as long as CONIO only reads CH, but doesn't update it, everything works as expected. Interestingly this makes a rather useful scenario of STDIO/CONIO interoperation work: Using STDIO for screen output and CONIO for keyboard input. When cgetc() is called after cursor(1), it has to write to the screen as there's no hardware cursor on the Apple II. Those writes work as expected even in 40 column mode with active 80 column firmware as CH is only read but not written.
2025-03-13 22:22:28 +01:00
Oliver Schmidt
7c2671be2a Disable interrupts during aux memory access.
Interrupt handlers rather likely access text screen holes. Especially MSLOT is obligatory for every interrupt handler that requires access to an extension ROM ($C800-$CFFE) in order to be able to re-enable the extension ROM that was enabled when the interrupt occured. Those text screen holes only hold valid values in main memory so interrupts must be disabled while the aux memory text screen is mapped.
2025-03-13 22:22:28 +01:00
Oliver Schmidt
fd4c1e193d Completely disable/enable 80 column firmware.
The //e 80 column firmware allows to switch between 80 and 40 clumns without clearing the screen. So far, I made that feature available via videomode(). However thinking about it once more, I don't see a C program making use of it. A C program rather benefits from the consistent behavior of videomode() always clearing the screen.
Apart from that, the (default) 40 column display and the 40 column display with 80 column firmware active, behave differently (CH vs. OURCH) which causes subtile issues. Those issues can be avoid altogether by simply always deactivating the 80 column firmware when switching from 80 column display to 40 column display.
Of course, those issues are also relevant, if the 40 column display with 80 column firmware is already active when the C program starts. However, I have reasons to believe that running the Apple II in that mode was/is very unpopular.
2025-03-13 22:22:28 +01:00
Colin Leroy-Mira
c8eb6e2dd5 Apple II: Document BLTU alternative 2025-03-09 16:19:42 +01:00
Colin Leroy-Mira
020fe4028a Fix RANGE ERROR STOPPED AT 8214
On a 48k Apple II, the BLTU2 call throws an error,
even when there is nothing to copy in the LC segment.

Add an alternative LC copy, based on memcpy, to an
extra file that the user can link in as with iobuf-0800.

This memcpy-based version allows our programs to run on
Integer ROM apple2. It costs 21 bytes in binary size,
plus memcpy (60 bytes in binary size + RAM use) if it
wasn't already linked in.
2025-03-06 15:55:10 +01:00
Christian Groessler
02470a2343 atari5200: fix conio screen initialization
Screen memory clearing was wrong, now uses _clrscr function.
2025-03-04 23:41:30 +01:00
Christian Groessler
16224cdd36 atari5200: fix _clrscr to use correct screen size
Could be different than default when linking with atari5200-conioscreen-20x12.o.
2025-03-04 23:07:13 +01:00
Christian Groessler
b0220e5456 fix problem in _get_tv for GEOS CBM
Found by mkslack, see #2046
2025-03-02 09:26:31 +01:00
Christian Groessler
e5cebeda76
Merge pull request #2606 from groessler/something_to_pull
Atari: fix fallout of change of INIT segment to 'bss' type
2025-02-25 21:55:48 +01:00
Christian Groessler
04ada63935 Atari: let crt0.s always provide an (empty) INIT segment 2025-02-23 01:06:08 +01:00
Christian Groessler
0082473630 Atari: fix fallout of change of INIT segment to 'bss' type
The size of the load chunk was calculated incorrectly in exehdr.s
since the INIT segment is no longer being part of the file anymore.

While at it, change atari-cassette.cfg so that order of BSS and INIT
is the same as in the other configs. See 692f96409d4e809d8 why it was
in different order.
2025-02-23 00:35:23 +01:00
Christian Groessler
b75f872fee
Merge pull request #2602 from polluks/master
Fixed cassette boot file header #2600
2025-02-02 16:52:42 +01:00
Stefan
46b2f95ac8
comment 2025-01-31 20:56:59 +01:00
Stefan
fb12363a6a
Fixed cassette boot file header #2600 2025-01-31 20:26:35 +01:00
Bob Andrews
d5cf8ef7ea
Merge pull request #2587 from colinleroy/rewind-asm-and-fseek-paravirt
Rewrite rewind() in assembly,add lseek() to paravirt
2025-01-27 17:18:12 +01:00
Oliver Schmidt
99b113de64 Make memory between the end of the text screen and the start of the loaded program available to the linker. 2025-01-19 18:17:11 +01:00
mrdudz
734a76c158 added missing directories to "install" target 2025-01-12 19:03:39 +01:00
mrdudz
67da1e7123 add makefile for simulator samples 2025-01-12 18:57:31 +01:00
Sidney Cadot
9fd090ae8b
Merge pull request #2593 from sidneycadot/sim65-add-peripheral-support-and-docs-and-samples
sim65: add C/assembly support, docs, and samples for the new peripheral functionality.
2025-01-11 08:50:28 +01:00
Sidney Cadot
b05bb4a44f
Merge pull request #2595 from sidneycadot/fix-2594
Fixed typo in color symbol definition.
2025-01-07 23:51:52 +01:00
Sidney Cadot
e245ae655d Fixed typo in color symbol definition.
Fixes #2594.
2025-01-07 23:36:17 +01:00
Sidney Cadot
aacd64b2bc Shorteded is_65c02 routine. 2025-01-05 22:29:51 +01:00
Bob Andrews
4e3f1ed025
Merge pull request #2559 from polluks/violet
Fixed colour #2540
2025-01-05 21:59:03 +01:00
Bob Andrews
86ed0722e4
Merge pull request #2592 from kugelfuhr/kugelfuhr/fix-2566
Fix a field alignment bug
2025-01-05 19:25:51 +01:00
Kugel Fuhr
1556c8ac7c Move the test from "todo" to "val" since it shouldn't fail any longer. 2025-01-05 17:04:31 +01:00
Kugel Fuhr
447b6e5573 More explicit solution. The first one was a bit hackish. 2025-01-05 16:45:59 +01:00
Kugel Fuhr
3a52c143fb Fix #2566. 2025-01-05 16:45:59 +01:00
Sidney Cadot
50c669d38e
Merge pull request #2570 from sidneycadot/struct-assignment-bug2566
Added test to demonstrate issue #2566.
2025-01-05 16:33:27 +01:00
sidney
aca6b33af7 Fixed printf format types, and don't act like a test. 2025-01-05 16:16:13 +01:00
sidney
988260c699 sim65: add C/assembly support, docs, and samples for the new peripheral functionality.
This PR is the second of two PRs that replaces earlier PRs #2589 and #2590. Due to a git branching mishap it was decided to re-partition the new functionality in two sequential PRs that offer self-contained, new functionality to sim65.

The functionality in this second and last PR provides the following things in relation to the new "peripheral" support:

* C support: there is now an include/sim65.h that can be included from C. It provides access to the memory-mapped peripheral addresses.

* Asm support: there is now an asminc/sim65.inc that can be included from assembly. It provides symbolic labels for the memory-mapped peripheral addresses.

Note: the two items above are implemented by adding a "_peripherals" symbol to cfg/sim6502.cfg and cfg/sim65c02.cfg, with the fixed base address of the peripherals memory aperture (0xffc0).

* Updated the sim65 documentation to describe the peripherals in some detail, with examples that show to use the new features from within C.

* Some examples in the new samples/sim5/ directory. These are currently not integrated in the build system (in other words, there's no Makefile there), because I don't know how to do that. I will happily implement that after #2582 is taken care of.

If that is not acceptable, the next best thing will be for somebody else (who understands how the Makefiles are set up) to take care of this.

If that's not going to happen, and we don't want examples that are not properly integrated with the build system, there's always the option of removing these samples from the PR.
2025-01-05 15:58:05 +01:00
Sidney Cadot
edf0ce216e
Merge pull request #2591 from sidneycadot/add-tracing-and-cpumode-switching-peripheral
sim65: add tracing, and a sim65 control peripheral for sim65 runtime control
2025-01-05 15:17:17 +01:00
sidney
5be0b10b62 sim65: add tracing, and a sim65 control peripheral for sim65 runtime control.
This PR is the first of two PRs that replaces earlier PRs #2589 and #2590.
Due to a git branching mishap it was decided to re-partition the new
functionality in two sequential PRs that offer self-contained, new
functionality to sim65.

The functionality in this first PR extends the sim65 simulator in the following ways:

(1) It provides tracing functionality, i.e., the possibility of printing one line of simulator state information per instruction executed.
(2) It provides a memory mapped "sim65 control" peripheral that allows control of (a) the tracing functionality, and (b) the cpu mode.
(3) It provides command-line options to sim65 to enable the tracing, and to override the CPU mode as specified in the program file header.

More detailed information and some discussion can be found in the discussions with the (now retracted) PRs #2589 and #2590.

This PR provides the technical infrastructure inside the sim65 simulator program itself. Once this PR is accepted, a follow-up PR will be posted that adds C and assembly-language support for the new tracing and peripheral features so they can be easily accessed from the CC65 compiler and the CA65 assembler; some examples; and the documentation for these features. The lack of the latter, in this pull request, will be addressed then.
2025-01-03 21:39:20 +01:00
Sidney Cadot
25ed7ac6e4
Merge pull request #2588 from polluks/master
Fixed typos
2025-01-01 23:07:52 +01:00
Stefan
bf8b834317
Fixed typo 2025-01-01 18:31:57 +01:00
Stefan
0d8cbbc38b
Fixed typos 2025-01-01 18:30:23 +01:00
Stefan
3047439174
Fixed typo 2025-01-01 18:26:11 +01:00
Colin Leroy-Mira
21345bd6da Fix headers 2025-01-01 14:32:07 +01:00
Colin Leroy-Mira
adfb42bfa6 Rewrite rewind in assembly 2025-01-01 14:32:07 +01:00
Colin Leroy-Mira
5531320b51 Fix test_fread return value on error 2025-01-01 14:32:07 +01:00
Colin Leroy-Mira
50cccc2c3a Add lseek to sim6502 paravirt 2025-01-01 14:32:03 +01:00
Sidney Cadot
dbbfcd1467
Merge branch 'cc65:master' into struct-assignment-bug2566 2025-01-01 10:56:57 +01:00
Sidney Cadot
823f2045cf
Merge pull request #2586 from sidneycadot/fix-snapshot-build-issue_2
Fixing snapshot build issue.
2025-01-01 09:14:31 +01:00
sidney
66594d44a5 Forget to include sys/time.h which is needed for MingGW32 builds. 2025-01-01 08:58:51 +01:00
Sidney Cadot
0f203361bb
Merge pull request #2585 from sidneycadot/fix-snapshot-build-issue
Fix snapshot build failure. Hopefully this quick fix will solve the snapshot build failure for now.
2025-01-01 08:42:54 +01:00
sidney
ef18d2cdd9 Added code path for for MinGW32 builds that happen during snapshot builds, but not during PR builds. 2025-01-01 08:28:17 +01:00
Sidney Cadot
380a946faa
Merge branch 'cc65:master' into struct-assignment-bug2566 2024-12-31 23:02:08 +01:00
Sidney Cadot
b95e8b2ae0
Merge pull request #2577 from sidneycadot/feature-add-timer
sim65: add memory-mapped cycle/instruction/wallclock timer.
2024-12-31 23:00:22 +01:00