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 (4156)

Аватар пользователя 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