How-to-Make-a-Computer-Operating-System
                                
                                 How-to-Make-a-Computer-Operating-System copied to clipboard
                                
                                    How-to-Make-a-Computer-Operating-System copied to clipboard
                            
                            
                            
                        putc() method problem
In putc() method, line 3
video = (unsigned char *) (real_screen+ 2 * x + 160 * y);
I think should be
video = (unsigned char *) (real_screen+ 2 * x + 160 * (y - 1));
I'm new to this repository. Can you tell me the problem is in which file ??
If you enter the line above in the search bar, you'll notice that it appears on line 107 in io.cc