Patch by Greg King: Added the new graphics driver's name to the Atmos header.

Added its description to the Atmos document.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5962 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2013-01-09 20:25:05 +00:00
parent 3f677208d4
commit ee5216f69b
2 changed files with 16 additions and 7 deletions

View File

@@ -3,9 +3,10 @@
<article> <article>
<title>Oric Atmos specific information for cc65 <title>Oric Atmos specific information for cc65
<author>Ullrich von Bassewitz, <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"> <author>Ullrich von Bassewitz <htmlurl url="mailto:uz@cc65.org" name="uz@cc65.org"><newline>
Stefan A. Haubenthal, <htmlurl url="mailto:polluks@sdf.lonestar.org" name="polluks@sdf.lonestar.org"> Stefan A. Haubenthal <htmlurl url="mailto:polluks@sdf.lonestar.org" name="polluks@sdf.lonestar.org"><newline>
<date>2005-07-17 <url url="mailto:greg.king5@verizon.net" name="Greg King">
<date>2013-01-08
<abstract> <abstract>
An overview over the Atmos runtime system as it is implemented for the cc65 C An overview over the Atmos runtime system as it is implemented for the cc65 C
@@ -111,9 +112,17 @@ The names in the parentheses denote the symbols to be used for static linking of
<descrip> <descrip>
<tag><tt/atmos-228-200-3.tgi (atmos_228_200_3)/</tag>
This driver was written by Greg King and Stefan Haubenthal.
It features a resolution of 228&times;200 with a palette of two colors that
can be chosen from the Atmos's eight colors. The driver supports a third
palette-"color" that actually "flips" the pixel (it becomes the other color)
that is on the screen under the graphics cursor.
<tag><tt/atmos-240-200-2.tgi (atmos_240_200_2)/</tag> <tag><tt/atmos-240-200-2.tgi (atmos_240_200_2)/</tag>
This driver was written by Stefan Haubenthal. It features a resolution of This driver was written by Stefan Haubenthal and Greg King.
240&times;200 with 2 colors. It features a resolution of 240&times;200 with black and white colors.
It is the default graphics driver for the Atmos.
</descrip><p> </descrip><p>
@@ -133,7 +142,6 @@ No extended memory drivers are currently available for the Atmos.
</descrip><p> </descrip><p>
<sect1>Mouse drivers<p> <sect1>Mouse drivers<p>
No mouse drivers are currently available for the Atmos. No mouse drivers are currently available for the Atmos.

View File

@@ -121,6 +121,7 @@
/* The addresses of the static drivers */ /* The addresses of the static drivers */
extern void atmos_pase[]; /* Referred to by joy_static_stddrv[] */ extern void atmos_pase[]; /* Referred to by joy_static_stddrv[] */
extern void atmos_acia[]; extern void atmos_acia[];
extern void atmos_228_200_3[];
extern void atmos_240_200_2[]; /* Referred to by tgi_static_stddrv[] */ extern void atmos_240_200_2[]; /* Referred to by tgi_static_stddrv[] */