New programming language ccz80

ページ 4/5
1 | 2 | 3 | | 5

By Dinoneno

Resident (41)

Dinoneno さんの画像

12-07-2008, 18:45

By cesco

Champion (454)

cesco さんの画像

13-07-2008, 09:32

Thanks Dinoneno

By Dinoneno

Resident (41)

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.

By Dinoneno

Resident (41)

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.

By Yukio

Paragon (1540)

Yukio さんの画像

27-03-2009, 21:32

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

By Dinoneno

Resident (41)

Dinoneno さんの画像

28-03-2009, 13:53

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

By Dinoneno

Resident (41)

Dinoneno さんの画像

05-08-2009, 19:52

By Dinoneno

Resident (41)

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

By Dinoneno

Resident (41)

Dinoneno さんの画像

06-01-2011, 08:31

Gift of Three Kings Day: a new IDE.

http://www.ccz80.tk

By PingPong

Enlighted (4155)

PingPong さんの画像

06-01-2011, 10:08

Gift of Three Kings Day: a new IDE.

http://www.ccz80.tk

great to see

ページ 4/5
1 | 2 | 3 | | 5