Thanks Dinoneno
Released ccz80 2.0.4 with a little bug fixed. See http://www.telefonica.net/web2/emilioguerrero/ccz80/ccz80.html in section News.
New version ccz80 2.0.5 with more improvements. View http://www.telefonica.net/web2/emilioguerrero/ccz80/ccz80.html in section News.
The link to download the MSX PDF is broken. The correct link is Library MSX for ccz80.pdf
The links for the MSX library documentation and the syntax file for PSPad are fixed. Thanks Yukio.
New compiler version: ccz80 2.0.7:
http://www.telefonica.net/web2/emilioguerrero/ccz80/ccz80.html
ccz80 3.0.0
The main novelty is that it allows you to define macros for use in any expression. This allows for example to use arrays with indexes, structures, arrays structures, define functions whose content is a formula and other uses.
Example for using tables:
include "spectrum.ccz80"; // or "cpc464.ccz80" or "msx.ccz80"
define length = 10;
array byte data[length];
define table(i) = (*(data + i));
byte n;
for (n = 0; n < length; ++n) table(n) = n + 1;
for (n = 0; n < length; ++n) { printb(table(n)); printc(' '); }
pause(0); // For CPC o MSX remove this line
return;
Function example formula:
include "spectrum.ccz80"; // or "cpc464.ccz80" or "msx.ccz80"
define average(a, b, c) = ((a + b + c) / 3);
printw(average(1, 7, 10));
pause(0); // For CPC or MSX remove this line
return;
http://www.telefonica.net/web2/emilioguerrero/ccz80/ccz80sp.html
Gift of Three Kings Day: a new IDE.
Gift of Three Kings Day: a new IDE.
http://www.ccz80.tk
great to see