diff --git a/README.md b/README.md index 4b27cf5f0..e58794cde 100644 --- a/README.md +++ b/README.md @@ -99,3 +99,13 @@ When this code is compiled:: you get a program that outputs this when loaded on a C-64: ![c64 screen](docs/source/_static/hello_screen.png) + + +One of the included examples (wizzine.p8) animates a bunch of sprite balloons and looks like this: + +![wizzine screen](docs/source/_static/wizzine.png) + +Another example (cube3d-sprites.p8) draws the vertices of a rotating 3d cube: + +![cube3d screen](docs/source/_static/cube3d.png) + diff --git a/docs/source/_static/cube3d.png b/docs/source/_static/cube3d.png new file mode 100644 index 000000000..6670869b1 Binary files /dev/null and b/docs/source/_static/cube3d.png differ diff --git a/docs/source/_static/wizzine.png b/docs/source/_static/wizzine.png new file mode 100644 index 000000000..4403fe89d Binary files /dev/null and b/docs/source/_static/wizzine.png differ diff --git a/parser/src/prog8/parser/prog8Lexer.java b/parser/src/prog8/parser/prog8Lexer.java index 3763e7724..105358482 100644 --- a/parser/src/prog8/parser/prog8Lexer.java +++ b/parser/src/prog8/parser/prog8Lexer.java @@ -1,4 +1,4 @@ -// Generated from /home/irmen/Projects/prog8/parser/antlr/prog8.g4 by ANTLR 4.7.2 +// Generated from ./parser/antlr/prog8.g4 by ANTLR 4.7.2 package prog8.parser; import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; diff --git a/parser/src/prog8/parser/prog8Parser.java b/parser/src/prog8/parser/prog8Parser.java index 771a03e72..46cf56814 100644 --- a/parser/src/prog8/parser/prog8Parser.java +++ b/parser/src/prog8/parser/prog8Parser.java @@ -1,4 +1,4 @@ -// Generated from /home/irmen/Projects/prog8/parser/antlr/prog8.g4 by ANTLR 4.7.2 +// Generated from ./parser/antlr/prog8.g4 by ANTLR 4.7.2 package prog8.parser; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA;