]>
git.sur5r.net Git - cc65/log
Oliver Schmidt [Thu, 1 Feb 2018 20:50:54 +0000 (21:50 +0100)]
Added Makefile for recently added linker config test program.
Oliver Schmidt [Thu, 1 Feb 2018 20:46:56 +0000 (21:46 +0100)]
Updated AppleCommander URL.
Oliver Schmidt [Wed, 31 Jan 2018 23:18:07 +0000 (00:18 +0100)]
Mention the recently added linker configs.
Oliver Schmidt [Wed, 31 Jan 2018 22:52:08 +0000 (23:52 +0100)]
Updated AppleCommander URL.
Oliver Schmidt [Wed, 31 Jan 2018 14:06:37 +0000 (15:06 +0100)]
Adjust alternative ProDOS 8 I/O buffer allocation module to linker configs.
The Apple II linker configs don't define symbols for the STARTP segment anymore. There refer to the load/start address in the same way the executable file header does.
Oliver Schmidt [Wed, 31 Jan 2018 13:53:31 +0000 (14:53 +0100)]
Provide symbole for RAM memory area.
The RAM memory area symbols are referred by the startup code. The 64k and 128k variant say "for assembler" so it may be not necessary to do that there. However given the "limited" state of documentation for the target I don't assign too much value to those statements.
Additionally it's unclear to me why two variants provide symbols for the ROM memory.
Oliver Schmidt [Wed, 31 Jan 2018 07:54:48 +0000 (08:54 +0100)]
Significantly simplified recently added linker config files.
I just forgot about the 'start' segment attribute - which makes the scenario at hand dead easy.
Oliver Schmidt [Mon, 29 Jan 2018 16:46:36 +0000 (17:46 +0100)]
Added Apple II linker configs for programs including a hires screen.
The Apple II hires screen buffer is located at $2000 (and can't be moved). The usual way to get along with this is to load the cc65 program above the hires screen buffer at $4000. However, that means that it becomes difficult to make good use of the memory below the hires screen buffer. The simplest approach is to add that memory to the heap. But there are programs containing just lots of code and not much data. One could think of moving the code to the area below the hires screen after loading (like it is done with the code for the language card). But if the program is really large (and already contains code to be moved to the language card) it won't just fit into memory in the first place.
The alternative is to load the program at the usual $803 and have it "cover" the hires screen buffer. Of course the part of the program that actually "covers" the hires screen buffer mustn't contain anything necessary for the program. The downside of this approach is that the program file on disk contains 8kB that can't be used by the program. But instead of just containing zeros the program can as well contain a hires screen picture that can be displayed right after startup.
Now the user can have code loaded below the hires screen buffer by setting the code-name to LOWCODE. However, he needs to explicitly do so. Otherwise the memory below the hires screen is totally wasted.
Trivia: Allowing to do this hires screen buffer "covering" was the very reason to change tgi_init() to not clear the hires screen anymore.
Oliver Schmidt [Thu, 25 Jan 2018 12:35:21 +0000 (12:35 +0000)]
Merge pull request #577 from polluks/master
Moved initcgetc to initcputc
Stefan [Tue, 23 Jan 2018 12:02:47 +0000 (13:02 +0100)]
Moved initcgetc to initcputc
Oliver Schmidt [Mon, 22 Jan 2018 15:03:58 +0000 (15:03 +0000)]
Merge pull request #575 from groessler/something_to_pull
atari5200: put default display list into its own memory area
Christian Groessler [Sun, 21 Jan 2018 14:42:12 +0000 (15:42 +0100)]
atari5200.cfg: fix formatting
Christian Groessler [Sun, 21 Jan 2018 14:40:22 +0000 (15:40 +0100)]
Fix last change, put display list at beginning of ROM.
Christian Groessler [Fri, 19 Jan 2018 14:18:43 +0000 (15:18 +0100)]
atari5200: put default display list into its own memory area
This avoids 1K boundary crossing of the display list. Fix for issue #560.
Oliver Schmidt [Thu, 18 Jan 2018 11:37:21 +0000 (12:37 +0100)]
Added recently published ProDOS version.
Oliver Schmidt [Mon, 15 Jan 2018 08:37:32 +0000 (08:37 +0000)]
Merge pull request #574 from prandeamus/paravirt-fix
Call ParaVirtHooks on JMP (indirect)
prandeamus [Sun, 14 Jan 2018 19:42:29 +0000 (19:42 +0000)]
65C02 JMP (ind,x) opcode 7C
prandeamus [Sat, 13 Jan 2018 22:42:39 +0000 (22:42 +0000)]
65C02 version too.
prandeamus [Sat, 13 Jan 2018 18:30:53 +0000 (18:30 +0000)]
Call ParaVirtHooks on JMP (indirect)
Christian Groessler [Thu, 11 Jan 2018 12:15:19 +0000 (13:15 +0100)]
crt0.s ("none" target): fix initialization of sp variable.
Oliver Schmidt [Wed, 10 Jan 2018 12:48:28 +0000 (12:48 +0000)]
Merge pull request #571 from greg-king5/win64
Change the type of a cc65 variable that holds both integers and pointers.
Oliver Schmidt [Wed, 10 Jan 2018 12:21:09 +0000 (12:21 +0000)]
Merge pull request #570 from prandeamus/compiler-optimizer-check
Complain if unsupported flags are provided after -O
Greg King [Mon, 8 Jan 2018 17:47:00 +0000 (12:47 -0500)]
Changed the type of a compiler variable that holds either integers or pointers.
The change allows cc65 to be compiled on 64-bit Windows, without getting warnings. That OS is actually 32 bits with 64-bit pointers. Its pointers are "long long" instead of "long". The change uses type-names that are configured for the actual pointer width.
Greg King [Tue, 9 Jan 2018 09:48:39 +0000 (04:48 -0500)]
Shrank Telestrat initcwd.s by 3 bytes.
Changing when a loop test is done allowed the removal of an extra STA instruction.
prandeamus [Sun, 7 Jan 2018 18:57:48 +0000 (18:57 +0000)]
Complain if unsupported flags are provided after -O
Oliver Schmidt [Fri, 5 Jan 2018 11:05:30 +0000 (11:05 +0000)]
Merge pull request #564 from bauen1/none-library
Add none.lib
bauen1 [Fri, 5 Jan 2018 09:39:23 +0000 (10:39 +0100)]
Added ctype.s to none.lib as suggested by oliverschmidt
bauen1 [Thu, 4 Jan 2018 21:27:39 +0000 (22:27 +0100)]
Fixed unused import and export of none.cfg and none/crt0.s
bauen1 [Thu, 4 Jan 2018 21:14:01 +0000 (22:14 +0100)]
Fixed none/crt0.s to respect none.cfg
bauen1 [Thu, 4 Jan 2018 21:01:44 +0000 (22:01 +0100)]
Fixed none.cfg
bauen1 [Thu, 4 Jan 2018 20:29:58 +0000 (21:29 +0100)]
none.cfg consistency changes
bauen1 [Thu, 4 Jan 2018 16:11:44 +0000 (17:11 +0100)]
cl65 now links against none.lib when using --target none
bauen1 [Thu, 4 Jan 2018 12:54:00 +0000 (13:54 +0100)]
Removed initialization of the stack from none.lib
bauen1 [Thu, 4 Jan 2018 11:22:42 +0000 (12:22 +0100)]
Fixed none.lib missing symbols
bauen1 [Thu, 4 Jan 2018 11:07:35 +0000 (12:07 +0100)]
Added crt0 to none.lib
bauen1 [Thu, 4 Jan 2018 10:17:20 +0000 (11:17 +0100)]
Implemented the requested changes.
Moved none to its alphabetic place in the Makefile
Reverted all changes to doc/customizing.sgml
bauen1 [Tue, 2 Jan 2018 14:32:27 +0000 (15:32 +0100)]
Revert "Renamed none.lib to no-platform.lib"
This reverts commit
26350714ee3a78771061b77b6d20a472f1e40585 .
It breaks the build
bauen1 [Tue, 2 Jan 2018 14:15:27 +0000 (15:15 +0100)]
Renamed none.lib to no-platform.lib
Oliver Schmidt [Tue, 2 Jan 2018 12:48:30 +0000 (13:48 +0100)]
Fixed typo.
Oliver Schmidt [Mon, 1 Jan 2018 16:13:04 +0000 (16:13 +0000)]
Merge pull request #561 from mrdudz/soft80peek
C64 soft80 cpeek stuff
mrdudz [Mon, 1 Jan 2018 13:01:25 +0000 (14:01 +0100)]
fix spelling
bauen1 [Mon, 1 Jan 2018 00:34:53 +0000 (01:34 +0100)]
Fixed a typo in doc/customizing.sqml
bauen1 [Sun, 31 Dec 2017 14:49:17 +0000 (15:49 +0100)]
Added libray to none target
Oliver Schmidt [Fri, 29 Dec 2017 12:39:06 +0000 (12:39 +0000)]
Merge pull request #562 from groessler/something_to_pull
Implementation of getfirstdevice/getnextdevice for Atari.
mrdudz [Thu, 28 Dec 2017 16:52:27 +0000 (17:52 +0100)]
convert to petscii
Christian Groessler [Thu, 28 Dec 2017 03:54:18 +0000 (04:54 +0100)]
Implementation of getfirstdevice/getnextdevice for Atari.
mrdudz [Thu, 28 Dec 2017 01:26:23 +0000 (02:26 +0100)]
some cleanup
mrdudz [Thu, 28 Dec 2017 00:58:58 +0000 (01:58 +0100)]
updated testprog
mrdudz [Thu, 28 Dec 2017 00:58:03 +0000 (01:58 +0100)]
added peek functions for soft80
Oliver Schmidt [Tue, 19 Dec 2017 11:51:18 +0000 (11:51 +0000)]
Merge pull request #557 from polluks/master
Optimizing the stack size
greg-king5 [Mon, 18 Dec 2017 22:09:06 +0000 (17:09 -0500)]
Added missing "break;" statements to a "switch" statement.
Stefan [Mon, 18 Dec 2017 18:19:59 +0000 (19:19 +0100)]
Optimizing the stack size
Stefan [Mon, 18 Dec 2017 10:21:00 +0000 (11:21 +0100)]
Merge pull request #4 from cc65/master
Update
Oliver Schmidt [Mon, 18 Dec 2017 09:40:45 +0000 (09:40 +0000)]
Merge pull request #554 from polluks/patch-3
oops #550 again
Stefan [Sun, 17 Dec 2017 17:45:57 +0000 (18:45 +0100)]
oops
I made a mistake.
Oliver Schmidt [Sat, 16 Dec 2017 18:29:27 +0000 (18:29 +0000)]
Merge pull request #553 from polluks/patch-1
Fixed memory config #551
Oliver Schmidt [Sat, 16 Dec 2017 18:26:34 +0000 (18:26 +0000)]
Merge pull request #552 from polluks/master
Added Oric-1 compatibility #550
Stefan [Sat, 16 Dec 2017 01:36:31 +0000 (02:36 +0100)]
Update c16.cfg
Stefan [Sat, 16 Dec 2017 01:35:00 +0000 (02:35 +0100)]
Update c16-32k.cfg
Stefan [Sat, 16 Dec 2017 00:04:05 +0000 (01:04 +0100)]
Added new config #551
Stefan [Fri, 15 Dec 2017 23:41:00 +0000 (00:41 +0100)]
Fixed memory config #551
Stefan [Fri, 15 Dec 2017 22:51:39 +0000 (23:51 +0100)]
Fixed Oric-1 compatibility #550
Oliver Schmidt [Fri, 15 Dec 2017 19:42:02 +0000 (19:42 +0000)]
Merge pull request #545 from mrdudz/cbmpeek
cbm stuff from greggs pull request
mrdudz [Tue, 12 Dec 2017 16:05:52 +0000 (17:05 +0100)]
some tweaks to testprog
mrdudz [Tue, 12 Dec 2017 16:05:24 +0000 (17:05 +0100)]
fix cpeeks() for C128 VDC
mrdudz [Tue, 12 Dec 2017 03:32:39 +0000 (04:32 +0100)]
fix cpeeks for CBM610
mrdudz [Tue, 12 Dec 2017 02:49:07 +0000 (03:49 +0100)]
added missing tests
mrdudz [Tue, 12 Dec 2017 02:48:43 +0000 (03:48 +0100)]
copy cpeeks from generic version, this at least makes it work for 40 columns
mrdudz [Mon, 11 Dec 2017 20:53:00 +0000 (21:53 +0100)]
fix petscii conversion for C128
mrdudz [Mon, 11 Dec 2017 20:15:29 +0000 (21:15 +0100)]
PET screen memory is at $8000, not $0800
mrdudz [Mon, 11 Dec 2017 18:49:14 +0000 (19:49 +0100)]
cbm stuff from greggs pull request
Oliver Schmidt [Thu, 7 Dec 2017 19:39:28 +0000 (20:39 +0100)]
Removed OPC_EOR_abx duplicate.
Oliver Schmidt [Sat, 2 Dec 2017 10:04:59 +0000 (11:04 +0100)]
Removed CBM chartype table.
Oliver Schmidt [Thu, 30 Nov 2017 18:17:45 +0000 (19:17 +0100)]
Suppress potential svnversion error output.
Oliver Schmidt [Thu, 30 Nov 2017 18:11:18 +0000 (18:11 +0000)]
Merge pull request #541 from greg-king5/tgi-fix
Fix bugs in the Tiny Graphics Interface's document.
Greg King [Thu, 30 Nov 2017 16:56:38 +0000 (11:56 -0500)]
Fixed the sort order of the function descriptions in the TGI document.
Greg King [Thu, 30 Nov 2017 16:38:12 +0000 (11:38 -0500)]
Fixed a Table-Of-Contents bug in the TGI document.
The <toc> tag can't be put inside of a section. It isn't needed, anyway; we can get a TOC by putting the header as a section, and the functions as subsections.
Oliver Schmidt [Sun, 26 Nov 2017 20:16:29 +0000 (20:16 +0000)]
Merge pull request #533 from polluks/master
Splitting of funcref
Stefan [Sat, 25 Nov 2017 22:32:52 +0000 (23:32 +0100)]
Update tgi.sgml
Added missing ref.
Stefan [Sat, 25 Nov 2017 22:09:19 +0000 (23:09 +0100)]
Update tgi.sgml
I should take more attention of Travis.
Stefan [Sat, 25 Nov 2017 21:39:41 +0000 (22:39 +0100)]
Update tgi.sgml
Fixed toc.
Stefan [Sat, 25 Nov 2017 18:31:36 +0000 (19:31 +0100)]
Splitting of funcref
Greg King [Sat, 25 Nov 2017 18:25:01 +0000 (13:25 -0500)]
Added missing names for the CIA registers in the C64/C128.
Oliver Schmidt [Wed, 22 Nov 2017 18:59:14 +0000 (18:59 +0000)]
Merge pull request #530 from polluks/patch-1
Subversion fallback
Stefan [Wed, 22 Nov 2017 17:17:43 +0000 (18:17 +0100)]
Option removed
Oliver Schmidt [Wed, 22 Nov 2017 09:26:58 +0000 (09:26 +0000)]
Merge pull request #531 from polluks/patch-2
Fix docs for #526
Stefan [Wed, 22 Nov 2017 00:35:42 +0000 (01:35 +0100)]
Fix docs for #526
funcref.sgml is still growing and growing, how about outsourcing all TGI functions into tgi.sgml?
Stefan [Wed, 22 Nov 2017 00:02:02 +0000 (01:02 +0100)]
Subversion fallback
If you use don't use Git to access the repository, you will still get a revision number.
Oliver Schmidt [Tue, 21 Nov 2017 22:03:50 +0000 (23:03 +0100)]
Make use of C library waitvsync().
Oliver Schmidt [Tue, 21 Nov 2017 21:42:43 +0000 (22:42 +0100)]
Bumped API version.
Removal of the joy_masks array with https://github.com/cc65/cc65/commit/
7f52a770d9c6a43dde67689032bb3a4848eb6b30 was exactly the very type of change asking for a new API version.
Oliver Schmidt [Tue, 21 Nov 2017 10:09:53 +0000 (10:09 +0000)]
Merge pull request #529 from polluks/master
Added standard joystick driver for the Supervision.
Stefan [Tue, 21 Nov 2017 09:56:35 +0000 (10:56 +0100)]
defined DYN_DRV
Stefan [Tue, 21 Nov 2017 09:33:48 +0000 (10:33 +0100)]
New API
Stefan [Tue, 21 Nov 2017 09:29:35 +0000 (10:29 +0100)]
directive removed
Stefan [Tue, 21 Nov 2017 09:27:08 +0000 (10:27 +0100)]
directive removed
Stefan [Tue, 21 Nov 2017 09:22:53 +0000 (10:22 +0100)]
New API
Stefan [Tue, 21 Nov 2017 09:12:35 +0000 (10:12 +0100)]
Update supervision.h
Stefan [Tue, 21 Nov 2017 08:59:31 +0000 (09:59 +0100)]
Date
Stefan [Tue, 21 Nov 2017 08:51:35 +0000 (09:51 +0100)]
Fix docs for #453
Stefan [Tue, 21 Nov 2017 05:59:55 +0000 (06:59 +0100)]
Merge pull request #3 from polluks/polluks-sv-joy
Added standard joystick driver for the Supervision.