File tree Expand file tree Collapse file tree 1 file changed +12
-19
lines changed Expand file tree Collapse file tree 1 file changed +12
-19
lines changed Original file line number Diff line number Diff line change @@ -3555,28 +3555,21 @@ func_start console_putc,%a0/%a1/%d0-%d7
3555
3555
jra L(console_exit)
3556
3556
3557
3557
L(console_not_lf):
3558
- cmpib # 13 , %d7
3559
- jne L(console_not_cr )
3558
+ cmpib # '\r' , %d7
3559
+ jne L(console_not_lf_not_cr )
3560
3560
clrl %a0@(Lconsole_struct_cur_column)
3561
3561
jra L(console_exit)
3562
3562
3563
- L(console_not_cr):
3564
- cmpib # 1 , %d7
3565
- jne L(console_not_home)
3566
- clrl %a0@(Lconsole_struct_cur_row)
3567
- clrl %a0@(Lconsole_struct_cur_column)
3568
- jra L(console_exit)
3569
-
3570
- / *
3571
- * At this point we know th at the %d7 character is going to be
3572
- * rendered on the screen. Register usage is -
3573
- * a0 = pointer to console globals
3574
- * a1 = font data
3575
- * d0 = cursor column
3576
- * d1 = cursor row to draw the character
3577
- * d7 = character number
3578
- * /
3579
- L(console_not_home):
3563
+ / *
3564
+ * At this point we know th at the %d7 character is going to be
3565
+ * rendered on the screen. Register usage is -
3566
+ * a0 = pointer to console globals
3567
+ * a1 = font data
3568
+ * d0 = cursor column
3569
+ * d1 = cursor row to draw the character
3570
+ * d7 = character number
3571
+ * /
3572
+ L(console_not_lf_not_cr):
3580
3573
movel %a0@(Lconsole_struct_cur_column) , %d0
3581
3574
movel %a0@(Lconsole_struct_cur_row) , %d1
3582
3575
You can’t perform that action at this time.
0 commit comments