From b2510b83a5037591d112132cbcf09ab6f5d03e7e Mon Sep 17 00:00:00 2001 From: Devin Teske Date: Wed, 1 Apr 2015 01:25:58 +0000 Subject: [PATCH] When forced to draw ASCII lines/boxen, use `=' for the horizontal line when double frames are requested versus single. MFC after: 3 days X-MFC-to: stable/10 --- sys/boot/forth/frames.4th | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/boot/forth/frames.4th b/sys/boot/forth/frames.4th index fc96683d33b..00f1ff97079 100644 --- a/sys/boot/forth/frames.4th +++ b/sys/boot/forth/frames.4th @@ -39,6 +39,7 @@ variable fill \ ASCII frames (used when serial console is detected) 45 constant ascii_dash + 61 constant ascii_equal 124 constant ascii_pipe 43 constant ascii_plus @@ -113,7 +114,11 @@ s" arch-pc98" environment? [if] ; : f_double ( -- ) \ set frames to double - boot_serial? if f_ascii exit then + boot_serial? if + f_ascii + ascii_equal h_el ! + exit + then dh_el h_el ! dv_el v_el ! dlt_el lt_el !