Module Name: src Committed By: tsutsui Date: Tue Jun 21 15:40:21 UTC 2022
Modified Files: src/sys/arch/atari/dev: font_8x16.c src/sys/dev/wsfont: vt220iso8x16.h Log Message: Correct flipped glyph of 'N' in the "New Line" in the DEC graphics chars. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/arch/atari/dev/font_8x16.c cvs rdiff -u -r1.7 -r1.8 src/sys/dev/wsfont/vt220iso8x16.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/atari/dev/font_8x16.c diff -u src/sys/arch/atari/dev/font_8x16.c:1.4 src/sys/arch/atari/dev/font_8x16.c:1.5 --- src/sys/arch/atari/dev/font_8x16.c:1.4 Sun Dec 11 12:16:54 2005 +++ src/sys/arch/atari/dev/font_8x16.c Tue Jun 21 15:40:20 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: font_8x16.c,v 1.4 2005/12/11 12:16:54 christos Exp $ */ +/* $NetBSD: font_8x16.c,v 1.5 2022/06/21 15:40:20 tsutsui Exp $ */ /* * Copyright (c) 1992, 1993, 1994 Hellmuth Michaelis and Joerg Wunsch @@ -41,7 +41,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: font_8x16.c,v 1.4 2005/12/11 12:16:54 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: font_8x16.c,v 1.5 2022/06/21 15:40:20 tsutsui Exp $"); #include <atari/dev/font.h> @@ -72,7 +72,7 @@ unsigned char fontdata_8x16[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0x08 */ 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, 0x18, 0x18, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00, -/* 0x09 */ 0x00, 0x00, 0x88, 0x98, 0xa8, 0xc8, 0x88, 0x00, +/* 0x09 */ 0x00, 0x00, 0x88, 0xc8, 0xa8, 0x98, 0x88, 0x00, 0x10, 0x10, 0x10, 0x10, 0x1e, 0x00, 0x00, 0x00, /* 0x0a */ 0x00, 0x00, 0x88, 0x88, 0x50, 0x50, 0x20, 0x00, 0x3e, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00, 0x00, Index: src/sys/dev/wsfont/vt220iso8x16.h diff -u src/sys/dev/wsfont/vt220iso8x16.h:1.7 src/sys/dev/wsfont/vt220iso8x16.h:1.8 --- src/sys/dev/wsfont/vt220iso8x16.h:1.7 Sun Dec 11 12:24:12 2005 +++ src/sys/dev/wsfont/vt220iso8x16.h Tue Jun 21 15:40:20 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: vt220iso8x16.h,v 1.7 2005/12/11 12:24:12 christos Exp $ */ +/* $NetBSD: vt220iso8x16.h,v 1.8 2022/06/21 15:40:20 tsutsui Exp $ */ /* * Copyright (c) 1992, 1993, 1994 Hellmuth Michaelis and Joerg Wunsch @@ -226,9 +226,9 @@ static u_char vt220iso8x16_data[] = { 0x00, /* ........ */ 0x00, /* ........ */ 0x88, /* *...*... */ - 0x98, /* *..**... */ - 0xa8, /* *.*.*... */ 0xc8, /* **..*... */ + 0xa8, /* *.*.*... */ + 0x98, /* *..**... */ 0x88, /* *...*... */ 0x00, /* ........ */ 0x10, /* ...*.... */