diff --git a/.gitignore b/.gitignore index c84b85ff..824fd6c8 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,7 @@ examples/lunix/ *.rom HELLO HELLOCPC +FIZZBUZZ #heap dumps java_pid* diff --git a/examples/c64/softscroll.mfk b/examples/c64/softscroll.mfk index ec65e21b..8927489e 100644 --- a/examples/c64/softscroll.mfk +++ b/examples/c64/softscroll.mfk @@ -36,11 +36,11 @@ void main_loop() { scroll = 7 while true { while vic_raster != row * 8 - 1 + 50 {} - stabilize(8) + stabilize(9) vic_38_columns() vic_set_scroll(scroll, 3) while vic_raster != row * 8 + 7 + 50 {} - stabilize(20) + stabilize(22) vic_40_columns() vic_set_scroll(0,3) if scroll == 0 { diff --git a/examples/crossplatform/fizzbuzz.mfk b/examples/crossplatform/fizzbuzz.mfk index df1b3ba9..551daa75 100644 --- a/examples/crossplatform/fizzbuzz.mfk +++ b/examples/crossplatform/fizzbuzz.mfk @@ -17,5 +17,6 @@ void main() { } putchar(' ') } + while(true){} } diff --git a/examples/crossplatform/text_encodings.mfk b/examples/crossplatform/text_encodings.mfk index 8d4b402d..2f7abb0b 100644 --- a/examples/crossplatform/text_encodings.mfk +++ b/examples/crossplatform/text_encodings.mfk @@ -2,7 +2,7 @@ import stdio const array p = [ "this is an example", 13, - "of {red}multiline {yellow}{reverse}", + "of {red}multiline {blue}{reverse}", #if CBM "petscii", #else diff --git a/examples/screenshots.png b/examples/screenshots.png new file mode 100644 index 00000000..6d4206ef Binary files /dev/null and b/examples/screenshots.png differ