Avoided some makeinfo warnings when Cygwin runs LinuxDoc Tools.
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
<author>
|
<author>
|
||||||
<url url="mailto:shawnjefferson@24fightingchickens.com" name="Shawn Jefferson"> and<newline>
|
<url url="mailto:shawnjefferson@24fightingchickens.com" name="Shawn Jefferson"> and<newline>
|
||||||
<url url="mailto:chris@groessler.org" name="Christian Groessler">
|
<url url="mailto:chris@groessler.org" name="Christian Groessler">
|
||||||
<date>2014-04-10
|
<date>2014-04-24
|
||||||
|
|
||||||
<abstract>
|
<abstract>
|
||||||
An overview over the Atari runtime system as it is implemented for the cc65 C
|
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/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.
|
<tt/atrmj8.joy (atrmj8_joy)/|<tt/atrxmj8.joy (atrxmj8_joy)/|Supports up to eight standard joysticks connected to a MultiJoy adapter.
|
||||||
</tabular>
|
</tabular>
|
||||||
<caption>
|
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
Default drivers: <tt/atrstd.joy (atrstd_joy)/ and <tt/atrxstd.joy (atrxstd_joy)/.
|
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/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.
|
<tt/atrtt.mou (atrtt_mou)/|<tt/atrxtt.mou (atrxtt_mou)/|Supports an Atari touch tablet.
|
||||||
</tabular>
|
</tabular>
|
||||||
<caption>
|
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
All mouse devices connect to joystick port #0.
|
All mouse devices connect to joystick port #0.
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<author>
|
<author>
|
||||||
<url url="mailto:ytm@elysium.pl" name="Maciej 'YTM/Elysium' Witkowiak">,<newline>
|
<url url="mailto:ytm@elysium.pl" name="Maciej 'YTM/Elysium' Witkowiak">,<newline>
|
||||||
<url url="mailto:greg.king5@verizon.net" name="Greg King">
|
<url url="mailto:greg.king5@verizon.net" name="Greg King">
|
||||||
<date>VII 2000; VI,VII 2002; 2005-8-3
|
<date>2014-04-24
|
||||||
<abstract>
|
<abstract>
|
||||||
This document describes a compiler that can create GEOS headers and menues for
|
This document describes a compiler that can create GEOS headers and menues for
|
||||||
cc65-compiled programs.
|
cc65-compiled programs.
|
||||||
@@ -344,7 +344,7 @@ for addresses.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<appendix>
|
<!-- <appendix> -->
|
||||||
<sect>Appendix A -- example.grc<label id="example-grc">
|
<sect>Appendix A -- example.grc<label id="example-grc">
|
||||||
<p><tscreen><verb>
|
<p><tscreen><verb>
|
||||||
; Note that MENU can define both menues and submenues.
|
; Note that MENU can define both menues and submenues.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<article>
|
<article>
|
||||||
<title>ca65 Macros for Self Modifying Code
|
<title>ca65 Macros for Self Modifying Code
|
||||||
<author>Christian Krüger
|
<author>Christian Krüger
|
||||||
<date>2012-02-19
|
<date>2014-04-24
|
||||||
|
|
||||||
<abstract>
|
<abstract>
|
||||||
The 'smc.inc' macro package for ca65 eases the use, increases the safeness and
|
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 -
|
not only modifies code, but also the modification of the code is modified -
|
||||||
allowing reuse of some instructions.
|
allowing reuse of some instructions.
|
||||||
|
|
||||||
The code is from my 'memset()'implementation:
|
|
||||||
|
|
||||||
<descrip>
|
<descrip>
|
||||||
|
<tag/The code is from my 'memset()'implementation:/
|
||||||
<tscreen><verb>
|
<tscreen><verb>
|
||||||
1: ...
|
1: ...
|
||||||
2: SMC_StoreAddress StoreAccuFirstSection
|
2: SMC_StoreAddress StoreAccuFirstSection
|
||||||
@@ -568,8 +567,7 @@ The code is from my 'memset()'implementation:
|
|||||||
16: ...
|
16: ...
|
||||||
</verb></tscreen>
|
</verb></tscreen>
|
||||||
|
|
||||||
Some explanation:
|
<tag/Some explanation:/
|
||||||
|
|
||||||
Line 2: The register pair A/X contains an address, which is stored on the
|
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
|
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
|
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.
|
Line 14,15: The original code from line 8 is reestablished.
|
||||||
</descrip>
|
</descrip>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user