Difference between revisions of "Category:Z80 Routines"

From WikiTI
Jump to: navigation, search
 
m (one more link)
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:Calculator Documentation|General z80 Calculator Routines]]
+
[[Category:Calculator Documentation|General Z80 Calculator Routines]]
This Category contains routines that can be used on many z80-based calculators. Please consult each example for which calculators they apply to.
+
This Category contains routines that can be used on many Z80-based calculators. Please consult each example for which calculators they apply to.
 +
 
 +
----
 +
 
 +
When you paste code, there is a simple step you can do to format the code properly. Start the first line of code with <nowiki>, and put a space in front of the <. On the last line of your code, end it with </nowiki>. This allows for code to be formatted like this (click edit on this page to see how it's done):
 +
 
 +
<nowiki>cp 10
 +
ccf
 +
adc a, 30h
 +
daa</nowiki>
 +
 
 +
Also, there are a bunch of routines on:
 +
* [http://www.detachedsolutions.com/forum/viewtopic.php?t=1154 DS forums]
 +
* [http://baze.au.com/misc/z80bits.html Z80 Bits]
 +
* [http://www.smspower.org/dev/docs/wiki/CodeSnippets/CodeSnippets SMS Power z80 code snippets]
 +
* [http://www.unitedti.org/index.php?showtopic=1279 UTI forums]
 +
* [http://www.revsoft.org/phpBB2/viewtopic.php?t=354 RS forums]
 +
* [http://www.junemann.nl/maxcoderz/viewtopic.php?f=5&t=1940 MC forums]
 +
* [http://www.cemetech.net/forum/viewtopic.php?t=1449 Cemetech forums]
 +
* [http://www.ticalc.org/pub/83plus/asm/source/ ticalc archive]
 +
* [http://www.ticalc.org/archives/files/fileinfo/130/13059.html Ion shell source code]

Latest revision as of 14:49, 17 June 2010

This Category contains routines that can be used on many Z80-based calculators. Please consult each example for which calculators they apply to.


When you paste code, there is a simple step you can do to format the code properly. Start the first line of code with <nowiki>, and put a space in front of the <. On the last line of your code, end it with </nowiki>. This allows for code to be formatted like this (click edit on this page to see how it's done):

cp 10
ccf
adc a, 30h
daa

Also, there are a bunch of routines on: