1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-27 04:54:54 +00:00

Avoided some makeinfo warnings when Cygwin runs LinuxDoc Tools.

This commit is contained in:
Greg King 2014-04-25 03:33:53 -04:00
parent e4f8b6fef0
commit d2bb12d17a
3 changed files with 6 additions and 11 deletions

View File

@ -6,7 +6,7 @@
<author>
<url url="mailto:shawnjefferson@24fightingchickens.com" name="Shawn Jefferson"> and<newline>
<url url="mailto:chris@groessler.org" name="Christian Groessler">
<date>2014-04-10
<date>2014-04-24
<abstract>
An overview over the Atari runtime system as it is implemented for the cc65 C
@ -435,7 +435,6 @@ Currently there are two joystick drivers available:
<tt/atrstd.joy (atrstd_joy)/|<tt/atrxstd.joy (atrxstd_joy)/|Supports up to two/four standard joysticks connected to the joystick ports of the Atari. (Four on the pre-XL systems, two on XL or newer.)@
<tt/atrmj8.joy (atrmj8_joy)/|<tt/atrxmj8.joy (atrxmj8_joy)/|Supports up to eight standard joysticks connected to a MultiJoy adapter.
</tabular>
<caption>
</table>
Default drivers: <tt/atrstd.joy (atrstd_joy)/ and <tt/atrxstd.joy (atrxstd_joy)/.
@ -453,7 +452,6 @@ Currently there are five mouse drivers available:
<tt/atrtrk.mou (atrtrk_mou)/|<tt/atrxtrk.mou (atrxtrk_mou)/|Supports an Atari trakball.@
<tt/atrtt.mou (atrtt_mou)/|<tt/atrxtt.mou (atrxtt_mou)/|Supports an Atari touch tablet.
</tabular>
<caption>
</table>
All mouse devices connect to joystick port #0.

View File

@ -7,7 +7,7 @@
<author>
<url url="mailto:ytm@elysium.pl" name="Maciej 'YTM/Elysium' Witkowiak">,<newline>
<url url="mailto:greg.king5@verizon.net" name="Greg King">
<date>VII 2000; VI,VII 2002; 2005-8-3
<date>2014-04-24
<abstract>
This document describes a compiler that can create GEOS headers and menues for
cc65-compiled programs.
@ -344,7 +344,7 @@ for addresses.
<appendix>
<!-- <appendix> -->
<sect>Appendix A -- example.grc<label id="example-grc">
<p><tscreen><verb>
; Note that MENU can define both menues and submenues.

View File

@ -3,7 +3,7 @@
<article>
<title>ca65 Macros for Self Modifying Code
<author>Christian Kr&uuml;ger
<date>2012-02-19
<date>2014-04-24
<abstract>
The 'smc.inc' macro package for ca65 eases the use, increases the safeness and
@ -546,9 +546,8 @@ Let's have a look on a quite sophisticated example for the usage of SMC. It
not only modifies code, but also the modification of the code is modified -
allowing reuse of some instructions.
The code is from my 'memset()'implementation:
<descrip>
<tag/The code is from my 'memset()'implementation:/
<tscreen><verb>
1: ...
2: SMC_StoreAddress StoreAccuFirstSection
@ -568,8 +567,7 @@ The code is from my 'memset()'implementation:
16: ...
</verb></tscreen>
Some explanation:
<tag/Some explanation:/
Line 2: The register pair A/X contains an address, which is stored on the
address location of a SMC line called 'StoreAccuFirstSection'. According to
cc65's calling convention, the low-byte is in accu while the high-byte is in
@ -593,4 +591,3 @@ changed in the future...
Line 14,15: The original code from line 8 is reestablished.
</descrip>
</article>