From cbcb1e492fe8fb4ed729b16046061241844baa49 Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Mon, 11 Jan 2016 08:23:17 -0800 Subject: [PATCH] Cleanup syntax, missing semi-colon --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2915466..f21a2c6 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ When we are done we will have 6502 assembly code that implements the equivalent ```c void DrawChar(); - void DrawCharCol( char c, int col ) + void DrawCharCol( char c, int col ); void DrawCharColRow( char c, int col, int row ); void SetCursorRow( int row ); void SetCursorColRow3( int col, int row );