diff --git a/README.md b/README.md index 60717afa1..ae310d173 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,9 @@ When this code is compiled:: c64.CHROUT(bye[c]) - float clock_seconds = ((mkword(c64.TIME_LO, c64.TIME_MID) as float) + (c64.TIME_HI as float)*65536.0) / 60 + float clock_seconds = ((mkword(c64.TIME_LO, c64.TIME_MID) as float) + + (c64.TIME_HI as float)*65536.0) + / 60 float hours = floor(clock_seconds / 3600) clock_seconds -= hours*3600 float minutes = floor(clock_seconds / 60) @@ -90,6 +92,7 @@ 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)