davidcallanan / os-series

820 stars 120 forks source link

Bug in print.c? #64

Closed mharleyaz closed 2 years ago

mharleyaz commented 2 years ago

I think there might be a bug in print.c in the print_newline() function. Line #48 says: clear_row(NUM_COLS - 1). I think it should be: clear_row(NUM_ROWS - 1).

I think clearing rows 26-80 might make whatever follows video memory very unhappy. 😁

davidcallanan commented 2 years ago

Thank you. I will be fixing this soon.

Duplicate of #3