diff options
| author | ad <ad@NetBSD.org> | 2000-01-12 14:42:21 +0000 |
|---|---|---|
| committer | ad <ad@NetBSD.org> | 2000-01-12 14:42:21 +0000 |
| commit | 192e0875855fae1e25a415f6d1453afc8a92d72f (patch) | |
| tree | bfb780ef4bd51afe9b7c2d4fb31d4eaebac17155 /sys/dev | |
| parent | 39caf082ca5dab49860011ecefbb30f05617ab0a (diff) | |
Make PCDISPLAY_SOFTCURSOR work as it should.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/pcdisplay_subr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/pcdisplay_subr.c b/sys/dev/ic/pcdisplay_subr.c index 25ea9b879ce..29d049de157 100644 --- a/sys/dev/ic/pcdisplay_subr.c +++ b/sys/dev/ic/pcdisplay_subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: pcdisplay_subr.c,v 1.12 2000/01/05 16:14:35 ad Exp $ */ +/* $NetBSD: pcdisplay_subr.c,v 1.13 2000/01/12 14:42:21 ad Exp $ */ /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. @@ -46,8 +46,8 @@ pcdisplay_cursor_init(scr) { #ifdef PCDISPLAY_SOFTCURSOR - pcdisplay_6845_write(scr->hdl, cursorh, 0x10); - pcdisplay_6845_write(scr->hdl, cursorl, 0x10); + pcdisplay_6845_write(scr->hdl, curstart, 0x10); + pcdisplay_6845_write(scr->hdl, curend, 0x10); #endif } |
