How-to-Make-a-Computer-Operating-System icon indicating copy to clipboard operation
How-to-Make-a-Computer-Operating-System copied to clipboard

putc() method problem

Open chuanjian666 opened this issue 11 years ago • 2 comments

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));

chuanjian666 avatar Jan 23 '14 06:01 chuanjian666

I'm new to this repository. Can you tell me the problem is in which file ??

amulya349 avatar May 27 '14 17:05 amulya349

If you enter the line above in the search bar, you'll notice that it appears on line 107 in io.cc

dsfa

ghost avatar May 27 '14 18:05 ghost