From 190ecff0921cd4acc835aa1b73b1d324e5949a3c Mon Sep 17 00:00:00 2001 From: RevCurtisP Date: Sat, 17 Mar 2018 22:41:18 -0400 Subject: [PATCH] Added syntax examples to README --- README.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/README.md b/README.md index 167fed8..d472cca 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,61 @@ in Windows. Some of the subdirectories contain a c02.bat file, which will compile the .c02 program, then run dasm to assemble the code. However, the path to dasm is hardcoded, so you will likely need to change it. The file [c02.sh](./c02sh) provides the same functionality in Linux, but it may not be in a working state. + +## Syntax Examples +``` +/* Constants */ +const #TRUE = $FF, #FALSE = 0; //Constant +enum {BLACK, WHITE, RED, CYAN, PURPLE, GREEN, BLUE, YELLOW}; + +/* Structures */ +struct record {char name[8]; char index;}; //Struct Definition +struct record rec; //Struct Declaration + +/* Declarations */ +char i, j; //Variables +char debug = #TRUE; //Variable initialized to constant +char flag = %01010101; //Variable initialized to literal +char r[7]; //8 byte Array +char s = "string"; //Array initialized to string +char m = {1,2,3}; //Array initialized to list + +/* Functions Declarations */ +void myfunc(); //Forward declaration of function +char min(tmp1, tmp2) { + //function definition +} + +/* Assignments */ +hmove; s80vid; //Implicit Assignments +x = 0; y = a; a = 1; //Register Assignments +b = c + d - e & f | g ^ h; //Assignment and Expression +d[j] = r[i], s[x], t[y]; //Array Indexing +a<< ;b[i]>>; x++; y--; //Post-Operations + +/* Function Calls */ +i = abs(n); j = min(b,c), k = max(d,e); plot(h,v,c); +n = mult(e+f, div(m+n,d)) - t; +puts("string"); putc(#CR); fputs(fp, &line); +c = getc(); i = strchr(c, &s); row,col = scnpos(); +push d,r; mult(); pop p; //Pass via Stack +iprint(); inline "Hello World"; //Pass Inline String +irect(); inline 10,10,100,100; //Pass Inline Parameters + +/* Control Structures */ +if (c = 27) goto end; +if (n) q = div(n,d) else puts("Division by 0!"); +c = 'A' ; while (c <= 'Z') { putc(c); c++; } +while() { c=rdkey; if (c=0) continue; putchr(c); if (c=13) break; } +do c = rdkey(); while (c=0); +do (c = getchr(); putchr(c); while (c<>13) +for (c='A'; c<='Z'; c++) putc(c); +for (i=strlen(s)-1;i:+;i--) putc(s[i]); +for (i=0;c>0;i++) { c=getc(); s[i]=c } +select (getc()) { + case $0D: putln("The Enter key"); + case 'A','a': putln ("The letter A"); + default: putln("some other key"); +} +end: //Label +```