New programming language ccz80

Página 4/5
1 | 2 | 3 | | 5

Por Dinoneno

Resident (41)

Imagen del Dinoneno

12-07-2008, 18:45

Por cesco

Champion (454)

Imagen del cesco

13-07-2008, 09:32

Thanks Dinoneno

Por Dinoneno

Resident (41)

Imagen del Dinoneno

12-01-2009, 12:06

Released ccz80 2.0.4 with a little bug fixed. See http://www.telefonica.net/web2/emilioguerrero/ccz80/ccz80.html in section News.

Por Dinoneno

Resident (41)

Imagen del Dinoneno

27-03-2009, 20:08

New version ccz80 2.0.5 with more improvements. View http://www.telefonica.net/web2/emilioguerrero/ccz80/ccz80.html in section News.

Por Yukio

Paragon (1540)

Imagen del Yukio

27-03-2009, 21:32

The link to download the MSX PDF is broken. The correct link is Library MSX for ccz80.pdf

Por Dinoneno

Resident (41)

Imagen del Dinoneno

28-03-2009, 13:53

The links for the MSX library documentation and the syntax file for PSPad are fixed. Thanks Yukio.

Por Dinoneno

Resident (41)

Imagen del Dinoneno

05-08-2009, 19:52

Por Dinoneno

Resident (41)

Imagen del Dinoneno

13-04-2010, 21:03

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

Por Dinoneno

Resident (41)

Imagen del Dinoneno

06-01-2011, 08:31

Gift of Three Kings Day: a new IDE.

http://www.ccz80.tk

Por PingPong

Enlighted (4138)

Imagen del PingPong

06-01-2011, 10:08

Gift of Three Kings Day: a new IDE.

http://www.ccz80.tk

great to see

Página 4/5
1 | 2 | 3 | | 5